Enum gardiz::coord::FromStrRadixErr
source · pub enum FromStrRadixErr<E> {
MissingSep,
BadCoord(Axis, E),
}
Expand description
Error when parsing from string.
Variants§
MissingSep
Thrown when a missing comma is found.
BadCoord(Axis, E)
A coordinate could not be parsed correctly as an internal error of the coordinate type.
Trait Implementations§
source§impl<E: Clone> Clone for FromStrRadixErr<E>
impl<E: Clone> Clone for FromStrRadixErr<E>
source§fn clone(&self) -> FromStrRadixErr<E>
fn clone(&self) -> FromStrRadixErr<E>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<E: Debug> Debug for FromStrRadixErr<E>
impl<E: Debug> Debug for FromStrRadixErr<E>
source§impl<E> Display for FromStrRadixErr<E>where
E: Display,
impl<E> Display for FromStrRadixErr<E>where E: Display,
source§impl<E> Error for FromStrRadixErr<E>where
E: Error,
impl<E> Error for FromStrRadixErr<E>where E: Error,
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl<E: Copy> Copy for FromStrRadixErr<E>
Auto Trait Implementations§
impl<E> RefUnwindSafe for FromStrRadixErr<E>where E: RefUnwindSafe,
impl<E> Send for FromStrRadixErr<E>where E: Send,
impl<E> Sync for FromStrRadixErr<E>where E: Sync,
impl<E> Unpin for FromStrRadixErr<E>where E: Unpin,
impl<E> UnwindSafe for FromStrRadixErr<E>where E: UnwindSafe,
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