diff --git a/rustdoc/latest/equihash/all.html b/rustdoc/latest/equihash/all.html index ddc9e1b8a..8fcbe887d 100644 --- a/rustdoc/latest/equihash/all.html +++ b/rustdoc/latest/equihash/all.html @@ -1 +1 @@ -List of all items in this crate

List of all items

Structs

Functions

\ No newline at end of file +List of all items in this crate

List of all items

Structs

Functions

\ No newline at end of file diff --git a/rustdoc/latest/equihash/fn.is_valid_solution.html b/rustdoc/latest/equihash/fn.is_valid_solution.html index 44f939f9f..22f22bbd3 100644 --- a/rustdoc/latest/equihash/fn.is_valid_solution.html +++ b/rustdoc/latest/equihash/fn.is_valid_solution.html @@ -1,4 +1,4 @@ -is_valid_solution in equihash - Rust
equihash

Function is_valid_solution

Source
pub fn is_valid_solution(
+is_valid_solution in equihash - Rust
equihash

Function is_valid_solution

Source
pub fn is_valid_solution(
     n: u32,
     k: u32,
     input: &[u8],
diff --git a/rustdoc/latest/equihash/index.html b/rustdoc/latest/equihash/index.html
index 580af7f53..98ae9d0a2 100644
--- a/rustdoc/latest/equihash/index.html
+++ b/rustdoc/latest/equihash/index.html
@@ -1,4 +1,4 @@
-equihash - Rust

Crate equihash

Source
Expand description

Equihash is a Proof-of-Work algorithm, based on a generalization of the Birthday +equihash - Rust

Crate equihash

Source
Expand description

Equihash is a Proof-of-Work algorithm, based on a generalization of the Birthday problem which finds colliding hash values. It was designed to be memory-hard; more specifically, the bottle-neck for parallel implementations of Equihash solvers would be memory bandwidth.

diff --git a/rustdoc/latest/equihash/struct.Error.html b/rustdoc/latest/equihash/struct.Error.html index 707c064dc..1f3e04586 100644 --- a/rustdoc/latest/equihash/struct.Error.html +++ b/rustdoc/latest/equihash/struct.Error.html @@ -1,4 +1,4 @@ -Error in equihash - Rust
equihash

Struct Error

Source
pub struct Error(/* private fields */);
Expand description

An Equihash solution failed to verify.

+Error in equihash - Rust
equihash

Struct Error

Source
pub struct Error(/* private fields */);
Expand description

An Equihash solution failed to verify.

Trait Implementations§

Source§

impl Debug for Error

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Error

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for Error

1.30.0 · Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more

Auto Trait Implementations§

§

impl Freeze for Error

§

impl RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnwindSafe for Error

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where diff --git a/rustdoc/latest/f4jumble/all.html b/rustdoc/latest/f4jumble/all.html index 9b9b2ad88..8e9375b02 100644 --- a/rustdoc/latest/f4jumble/all.html +++ b/rustdoc/latest/f4jumble/all.html @@ -1 +1 @@ -List of all items in this crate
\ No newline at end of file +List of all items in this crate
\ No newline at end of file diff --git a/rustdoc/latest/f4jumble/constant.VALID_LENGTH.html b/rustdoc/latest/f4jumble/constant.VALID_LENGTH.html index 27d3022db..5825afdc8 100644 --- a/rustdoc/latest/f4jumble/constant.VALID_LENGTH.html +++ b/rustdoc/latest/f4jumble/constant.VALID_LENGTH.html @@ -1,3 +1,3 @@ -VALID_LENGTH in f4jumble - Rust
f4jumble

Constant VALID_LENGTH

Source
pub const VALID_LENGTH: RangeInclusive<usize>;
Expand description

Length of F4Jumbled message must lie in the range VALID_LENGTH.

+VALID_LENGTH in f4jumble - Rust
f4jumble

Constant VALID_LENGTH

Source
pub const VALID_LENGTH: RangeInclusive<usize>;
Expand description

Length of F4Jumbled message must lie in the range VALID_LENGTH.

VALID_LENGTH = 48..=4194368

\ No newline at end of file diff --git a/rustdoc/latest/f4jumble/enum.Error.html b/rustdoc/latest/f4jumble/enum.Error.html index e5ebe203e..8a3451d01 100644 --- a/rustdoc/latest/f4jumble/enum.Error.html +++ b/rustdoc/latest/f4jumble/enum.Error.html @@ -1,4 +1,4 @@ -Error in f4jumble - Rust
f4jumble

Enum Error

Source
pub enum Error {
+Error in f4jumble - Rust
f4jumble

Enum Error

Source
pub enum Error {
     InvalidLength,
 }
Expand description

Errors produced by F4Jumble.

Variants§

§

InvalidLength

Value error indicating that length of F4Jumbled message does not diff --git a/rustdoc/latest/f4jumble/fn.f4jumble.html b/rustdoc/latest/f4jumble/fn.f4jumble.html index c1f99bf72..f58b21ca7 100644 --- a/rustdoc/latest/f4jumble/fn.f4jumble.html +++ b/rustdoc/latest/f4jumble/fn.f4jumble.html @@ -1,4 +1,4 @@ -f4jumble in f4jumble - Rust

f4jumble

Function f4jumble

Source
pub fn f4jumble(message: &[u8]) -> Result<Vec<u8>, Error>
Available on crate feature alloc only.
Expand description

Encodes the given message using F4Jumble, and returns the encoded message as a vector +f4jumble in f4jumble - Rust

f4jumble

Function f4jumble

Source
pub fn f4jumble(message: &[u8]) -> Result<Vec<u8>, Error>
Available on crate feature alloc only.
Expand description

Encodes the given message using F4Jumble, and returns the encoded message as a vector of bytes.

Returns an error if the message is an invalid length.

§Examples

diff --git a/rustdoc/latest/f4jumble/fn.f4jumble_inv.html b/rustdoc/latest/f4jumble/fn.f4jumble_inv.html index 0165b33e8..f31614023 100644 --- a/rustdoc/latest/f4jumble/fn.f4jumble_inv.html +++ b/rustdoc/latest/f4jumble/fn.f4jumble_inv.html @@ -1,4 +1,4 @@ -f4jumble_inv in f4jumble - Rust
f4jumble

Function f4jumble_inv

Source
pub fn f4jumble_inv(message: &[u8]) -> Result<Vec<u8>, Error>
Available on crate feature alloc only.
Expand description

Decodes the given message using F4Jumble⁻¹, and returns the decoded message as a +f4jumble_inv in f4jumble - Rust

f4jumble

Function f4jumble_inv

Source
pub fn f4jumble_inv(message: &[u8]) -> Result<Vec<u8>, Error>
Available on crate feature alloc only.
Expand description

Decodes the given message using F4Jumble⁻¹, and returns the decoded message as a vector of bytes.

Returns an error if the message is an invalid length.

§Examples

diff --git a/rustdoc/latest/f4jumble/fn.f4jumble_inv_mut.html b/rustdoc/latest/f4jumble/fn.f4jumble_inv_mut.html index 2ef8b9128..848555a3f 100644 --- a/rustdoc/latest/f4jumble/fn.f4jumble_inv_mut.html +++ b/rustdoc/latest/f4jumble/fn.f4jumble_inv_mut.html @@ -1,4 +1,4 @@ -f4jumble_inv_mut in f4jumble - Rust
f4jumble

Function f4jumble_inv_mut

Source
pub fn f4jumble_inv_mut(message: &mut [u8]) -> Result<(), Error>
Expand description

Decodes the given message in-place using F4Jumble⁻¹.

+f4jumble_inv_mut in f4jumble - Rust
f4jumble

Function f4jumble_inv_mut

Source
pub fn f4jumble_inv_mut(message: &mut [u8]) -> Result<(), Error>
Expand description

Decodes the given message in-place using F4Jumble⁻¹.

Returns an error if the message is an invalid length. message will be unmodified in this case.

§Examples

diff --git a/rustdoc/latest/f4jumble/fn.f4jumble_mut.html b/rustdoc/latest/f4jumble/fn.f4jumble_mut.html index 1f4e99543..7dc3a5d95 100644 --- a/rustdoc/latest/f4jumble/fn.f4jumble_mut.html +++ b/rustdoc/latest/f4jumble/fn.f4jumble_mut.html @@ -1,4 +1,4 @@ -f4jumble_mut in f4jumble - Rust
f4jumble

Function f4jumble_mut

Source
pub fn f4jumble_mut(message: &mut [u8]) -> Result<(), Error>
Expand description

Encodes the given message in-place using F4Jumble.

+f4jumble_mut in f4jumble - Rust
f4jumble

Function f4jumble_mut

Source
pub fn f4jumble_mut(message: &mut [u8]) -> Result<(), Error>
Expand description

Encodes the given message in-place using F4Jumble.

Returns an error if the message is an invalid length. message will be unmodified in this case.

§Examples

diff --git a/rustdoc/latest/f4jumble/index.html b/rustdoc/latest/f4jumble/index.html index 609b7045c..f66346156 100644 --- a/rustdoc/latest/f4jumble/index.html +++ b/rustdoc/latest/f4jumble/index.html @@ -1,4 +1,4 @@ -f4jumble - Rust

Crate f4jumble

Source
Expand description

This crate provides a mechanism for “jumbling” byte slices in a reversible way.

+f4jumble - Rust

Crate f4jumble

Source
Expand description

This crate provides a mechanism for “jumbling” byte slices in a reversible way.

Many byte encodings such as Base64 and Bech32 do not have “cascading” behaviour: changing an input byte at one position has no effect on the encoding of bytes at distant positions. This can be a problem if users generally check the correctness of diff --git a/rustdoc/latest/help.html b/rustdoc/latest/help.html index 2a8c666d8..6729cc839 100644 --- a/rustdoc/latest/help.html +++ b/rustdoc/latest/help.html @@ -1 +1 @@ -Help

Rustdoc help

Back
\ No newline at end of file +Help

Rustdoc help

Back
\ No newline at end of file diff --git a/rustdoc/latest/index.html b/rustdoc/latest/index.html index b15456d43..241a8d028 100644 --- a/rustdoc/latest/index.html +++ b/rustdoc/latest/index.html @@ -1,2 +1,2 @@ -Index of crates
+Index of crates
\ No newline at end of file diff --git a/rustdoc/latest/pczt/all.html b/rustdoc/latest/pczt/all.html index ef9e9a1d6..fde0241e2 100644 --- a/rustdoc/latest/pczt/all.html +++ b/rustdoc/latest/pczt/all.html @@ -1 +1 @@ -List of all items in this crate
\ No newline at end of file +List of all items in this crate
\ No newline at end of file diff --git a/rustdoc/latest/pczt/common/index.html b/rustdoc/latest/pczt/common/index.html index 3942c0e40..1757f8926 100644 --- a/rustdoc/latest/pczt/common/index.html +++ b/rustdoc/latest/pczt/common/index.html @@ -1 +1 @@ -pczt::common - Rust
pczt

Module common

Source

Structs§

  • Global fields that are relevant to the transaction as a whole.
\ No newline at end of file +pczt::common - Rust
pczt

Module common

Source

Structs§

  • Global fields that are relevant to the transaction as a whole.
\ No newline at end of file diff --git a/rustdoc/latest/pczt/common/struct.Global.html b/rustdoc/latest/pczt/common/struct.Global.html index 6e944d04b..2d0231e25 100644 --- a/rustdoc/latest/pczt/common/struct.Global.html +++ b/rustdoc/latest/pczt/common/struct.Global.html @@ -1,4 +1,4 @@ -Global in pczt::common - Rust
pczt::common

Struct Global

Source
pub struct Global { /* private fields */ }
Expand description

Global fields that are relevant to the transaction as a whole.

+Global in pczt::common - Rust
pczt::common

Struct Global

Source
pub struct Global { /* private fields */ }
Expand description

Global fields that are relevant to the transaction as a whole.

Implementations§

Source§

impl Global

Source

pub fn proprietary(&self) -> &BTreeMap<String, Vec<u8>>

Proprietary fields related to the overall transaction.

Source§

impl Global

Source

pub fn inputs_modifiable(&self) -> bool

Returns whether transparent inputs can be added to or removed from the transaction.

diff --git a/rustdoc/latest/pczt/enum.ParseError.html b/rustdoc/latest/pczt/enum.ParseError.html index dbfada0d3..769292dd8 100644 --- a/rustdoc/latest/pczt/enum.ParseError.html +++ b/rustdoc/latest/pczt/enum.ParseError.html @@ -1,4 +1,4 @@ -ParseError in pczt - Rust
pczt

Enum ParseError

Source
pub enum ParseError {
+ParseError in pczt - Rust
pczt

Enum ParseError

Source
pub enum ParseError {
     NotPczt,
     Invalid(Error),
     TooShort,
@@ -8,7 +8,7 @@
 
§

Invalid(Error)

The PCZT encoding was invalid.

§

TooShort

The bytes are too short to contain a PCZT.

§

UnknownVersion(u32)

The PCZT has an unknown version.

-

Trait Implementations§

Source§

impl Debug for ParseError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where +

Trait Implementations§

Source§

impl Debug for ParseError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/rustdoc/latest/pczt/index.html b/rustdoc/latest/pczt/index.html index e061a8cb0..b85b14be2 100644 --- a/rustdoc/latest/pczt/index.html +++ b/rustdoc/latest/pczt/index.html @@ -1,4 +1,4 @@ -pczt - Rust

Crate pczt

Source
Expand description

The Partially Created Zcash Transaction (PCZT) format.

+pczt - Rust

Crate pczt

Source
Expand description

The Partially Created Zcash Transaction (PCZT) format.

Goal is to split up the parts of creating a transaction across distinct entities. The entity roles roughly match BIP 174: Partially Signed Bitcoin Transaction Format.