pub enum PrimitiveParseError {
IntError(ParseIntError),
FloatError(ParseFloatError),
BoolError(ParseBoolError),
CharError(ParseCharError),
StringWasNotNullError,
}
Variants§
IntError(ParseIntError)
FloatError(ParseFloatError)
BoolError(ParseBoolError)
CharError(ParseCharError)
StringWasNotNullError
Trait Implementations§
Source§impl From<ParseBoolError> for PrimitiveParseError
impl From<ParseBoolError> for PrimitiveParseError
Source§fn from(value: ParseBoolError) -> Self
fn from(value: ParseBoolError) -> Self
Converts to this type from the input type.
Source§impl From<ParseCharError> for PrimitiveParseError
impl From<ParseCharError> for PrimitiveParseError
Source§fn from(value: ParseCharError) -> Self
fn from(value: ParseCharError) -> Self
Converts to this type from the input type.
Source§impl From<ParseFloatError> for PrimitiveParseError
impl From<ParseFloatError> for PrimitiveParseError
Source§fn from(value: ParseFloatError) -> Self
fn from(value: ParseFloatError) -> Self
Converts to this type from the input type.
Source§impl From<ParseIntError> for PrimitiveParseError
impl From<ParseIntError> for PrimitiveParseError
Source§fn from(value: ParseIntError) -> Self
fn from(value: ParseIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PrimitiveParseError
impl RefUnwindSafe for PrimitiveParseError
impl Send for PrimitiveParseError
impl Sync for PrimitiveParseError
impl Unpin for PrimitiveParseError
impl UnwindSafe for PrimitiveParseError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more