pub enum NotAMarker {
But(String),
}
Expand description
When parsing of Marker goes wrong, this enumeration tells you precisely what went down.
Variants§
Trait Implementations§
Source§impl Debug for NotAMarker
impl Debug for NotAMarker
Source§impl From<NotAMarker> for NoDice
impl From<NotAMarker> for NoDice
Source§fn from(error: NotAMarker) -> Self
fn from(error: NotAMarker) -> Self
Converts to this type from the input type.
Source§impl From<NotAMarker> for RaceParseError
impl From<NotAMarker> for RaceParseError
Source§fn from(problem: NotAMarker) -> Self
fn from(problem: NotAMarker) -> Self
Converts to this type from the input type.
Source§impl PartialEq for NotAMarker
impl PartialEq for NotAMarker
impl StructuralPartialEq for NotAMarker
Auto Trait Implementations§
impl Freeze for NotAMarker
impl RefUnwindSafe for NotAMarker
impl Send for NotAMarker
impl Sync for NotAMarker
impl Unpin for NotAMarker
impl UnwindSafe for NotAMarker
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