[][src]Enum agnes::error::ParseError

pub enum ParseError {
    Int(ParseIntError),
    Bool(ParseBoolError),
    Float(ParseFloatError),
    Str(ParseError),
}

Error parsing data type from string.

Variants

Int(ParseIntError)

Integer

Bool(ParseBoolError)

Boolean

Float(ParseFloatError)

Floating-point

Str(ParseError)

String

Trait Implementations

impl From<ParseIntError> for ParseError[src]

impl From<ParseFloatError> for ParseError[src]

impl From<ParseBoolError> for ParseError[src]

impl From<Infallible> for ParseError[src]

impl From<ParseError> for AgnesError[src]

impl Debug for ParseError[src]

impl Display for ParseError[src]

impl Error for ParseError[src]

default fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

The lower-level source of this error, if any. Read more

default fn type_id(&self) -> TypeId where
    Self: 'static, 
1.34.0
[src]

Gets the TypeId of self

Auto Trait Implementations

impl Send for ParseError

impl Sync for ParseError

Blanket Implementations

impl<T> IntoLabeled for T[src]

impl<T> HasLabels for T[src]

impl<Needle, Haystack> HasLabels for Haystack where
    Haystack: Member<Needle, IsMember = B1>,
    Needle: Label
[src]

impl<Frames, Store> JoinIntoStore for Frames[src]

type Output = Store

The output type after augmenting Store.

impl<Frames> AssocDataIndexCons for Frames[src]

type Output = Nil

Type of associated data index cons-list.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Erased for T

impl<T> Same for T[src]

type Output = T

Should always be Self