#[non_exhaustive]pub enum OperationError {
AlreadyAborted,
AlreadyFinished,
UnsupportedFbxVersion(ParserVersion, FbxVersion),
}
Expand description
Invalid operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AlreadyAborted
Attempt to parse more data while the parsing is aborted.
AlreadyFinished
Attempt to parse more data while the parsing is (successfully) finished.
UnsupportedFbxVersion(ParserVersion, FbxVersion)
Attempt to create a parser with unsupported FBX version.
Trait Implementations§
Source§impl Debug for OperationError
impl Debug for OperationError
Source§impl Display for OperationError
impl Display for OperationError
Source§impl Error for OperationError
impl Error for OperationError
1.30.0 · 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<OperationError> for ErrorContainer
impl From<OperationError> for ErrorContainer
Source§fn from(e: OperationError) -> Self
fn from(e: OperationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OperationError
impl RefUnwindSafe for OperationError
impl Send for OperationError
impl Sync for OperationError
impl Unpin for OperationError
impl UnwindSafe for OperationError
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