CharListResult

Type Alias CharListResult 

Source
pub type CharListResult = AnyhowResult<Vec<char>>;

Aliased Type§

pub enum CharListResult {
    Ok(Vec<char>),
    Err(Error),
}

Variants§

§1.0.0

Ok(Vec<char>)

Contains the success value

§1.0.0

Err(Error)

Contains the error value

Trait Implementations§

Source§

impl<'b> From<&DecodedData<'b>> for CharListResult

impl decoded data into char list

Source§

fn from(value: &DecodedData<'b>) -> Self

Converts to this type from the input type.
Source§

impl<'b> From<&EncodedData<'b>> for CharListResult

Source§

fn from(value: &EncodedData<'b>) -> Self

Converts to this type from the input type.
Source§

impl<'b> From<DecodedData<'b>> for CharListResult

Source§

fn from(value: DecodedData<'b>) -> Self

Converts to this type from the input type.
Source§

impl<'b> From<EncodedData<'b>> for CharListResult

Source§

fn from(value: EncodedData<'b>) -> Self

Converts to this type from the input type.