Struct untrusted::Input[][src]

pub struct Input<'a> { /* fields omitted */ }
Expand description

A wrapper around &'a [u8] that helps in writing panic-free code.

No methods of Input will ever panic.

Intentionally avoids implementing PartialEq and Eq to avoid implicit non-constant-time comparisons.

Implementations

Construct a new Input for the given input bytes.

Returns true if the input is empty and false otherwise.

Returns the length of the Input.

Calls read with the given input as a Reader, ensuring that read consumed the entire input. If read does not consume the entire input, incomplete_read is returned.

Access the input as a slice so it can be processed by functions that are not written using the Input/Reader framework.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

The value is intentionally omitted from the output to avoid leaking secrets.

Formats the value using the given formatter. Read more

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.