pub enum Error {
Show 25 variants
EndOfFile,
NoToken,
Io(Error),
InvalidToken,
ParseFloat(ParseFloatError),
ParseInt(ParseIntError),
ParseBool(ParseBoolError),
ParseSlice,
UnknownDirective,
InvalidString,
InvalidOptionValue,
UnknownCoordinateSystem,
InvalidParamName,
InvalidParamType,
DuplicatedParamName,
WorldAlreadyStarted,
ElementNotAllowed,
TooManyEndAttributes,
InvalidMatrixName,
InvalidCameraType,
InvalidObjectType,
UnexpectedToken,
MissingRequiredParameter,
NestedObjects,
NotFound,
}Variants§
EndOfFile
No more tokens.
NoToken
Expected a token, but received None.
Io(Error)
InvalidToken
Token didn’t pass basic validation checks.
ParseFloat(ParseFloatError)
Failed to parse string to float.
ParseInt(ParseIntError)
Failed to parse string to integer.
ParseBool(ParseBoolError)
Failed to parse boolean.
ParseSlice
Unable to cast from slice to array.
UnknownDirective
Directive is unknown.
InvalidString
InvalidOptionValue
Failed to parse option’s [ value ]
UnknownCoordinateSystem
InvalidParamName
InvalidParamType
Unsupported parameter type.
DuplicatedParamName
WorldAlreadyStarted
ElementNotAllowed
TooManyEndAttributes
InvalidMatrixName
InvalidCameraType
InvalidObjectType
UnexpectedToken
MissingRequiredParameter
NestedObjects
NotFound
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
Source§impl From<ParseBoolError> for Error
impl From<ParseBoolError> for Error
Source§fn from(source: ParseBoolError) -> Self
fn from(source: ParseBoolError) -> Self
Converts to this type from the input type.
Source§impl From<ParseFloatError> for Error
impl From<ParseFloatError> for Error
Source§fn from(source: ParseFloatError) -> Self
fn from(source: ParseFloatError) -> Self
Converts to this type from the input type.
Source§impl From<ParseIntError> for Error
impl From<ParseIntError> for Error
Source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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