pub trait ChoicesInput<'a> {
    fn from_chars(bytes: &'a Bytes) -> ChoicesResult<Self>
    where
        Self: Sized
; }
Expand description

Trait to retrieve values from character sequences.

Required Methods

Parses an instance of Self from a buffer of contiguous characters.

Returns an error if the operation failed.

Implementations on Foreign Types

Implementors