pub enum StationParseError {
StartSyntaxError,
NameSyntaxError,
SmileSyntaxError,
CountSyntaxError,
DuplSyntaxError,
STNameSyntaxError,
STrackSyntaxError(StorageTrackParseError),
ExtraCharacters,
MissingBracket,
}Variants§
StartSyntaxError
NameSyntaxError
SmileSyntaxError
CountSyntaxError
DuplSyntaxError
STNameSyntaxError
STrackSyntaxError(StorageTrackParseError)
ExtraCharacters
MissingBracket
Trait Implementations§
Source§impl Debug for StationParseError
impl Debug for StationParseError
Source§impl Display for StationParseError
impl Display for StationParseError
Source§impl From<StorageTrackParseError> for StationParseError
impl From<StorageTrackParseError> for StationParseError
Source§fn from(error: StorageTrackParseError) -> Self
fn from(error: StorageTrackParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StationParseError
impl RefUnwindSafe for StationParseError
impl Send for StationParseError
impl Sync for StationParseError
impl Unpin for StationParseError
impl UnwindSafe for StationParseError
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