FromStrErr

Enum FromStrErr 

Source
pub enum FromStrErr<T> {
    IntParseErr(T),
    DenominatorIsZero,
}
Expand description

The error returned when parsing a string in decimal or rational notation into a num_rational::Ratio<T>.

Variants§

§

IntParseErr(T)

Contains the error when a string fails to parse into a T.

§

DenominatorIsZero

The variant that is returned when a string in rational notation has a denominator that is zero.

Trait Implementations§

Source§

impl<T> Debug for FromStrErr<T>
where T: Display,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T> Display for FromStrErr<T>
where T: Display,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T> From<T> for FromStrErr<T>

Source§

fn from(x: T) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<T> Freeze for FromStrErr<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for FromStrErr<T>
where T: RefUnwindSafe,

§

impl<T> Send for FromStrErr<T>
where T: Send,

§

impl<T> Sync for FromStrErr<T>
where T: Sync,

§

impl<T> Unpin for FromStrErr<T>
where T: Unpin,

§

impl<T> UnwindSafe for FromStrErr<T>
where T: UnwindSafe,

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<!> for T

§

fn from(t: !) -> T

Converts to this type from the input type.
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T> ToString for T
where T: Display + ?Sized,

§

fn to_string(&self) -> String

Converts the given value to a String. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.