pub enum Error {
Show 18 variants
InvalidProperty = -10_879,
InvalidParameter = -10_878,
InvalidElement = -10_877,
NoConnection = -10_876,
FailedInitialization = -10_875,
TooManyFramesToProcess = -10_874,
InvalidFile = -10_871,
FormatNotSupported = -10_868,
Uninitialized = -10_867,
InvalidScope = -10_866,
PropertyNotWritable = -10_865,
CannotDoInCurrentContext = -10_863,
InvalidPropertyValue = -10_851,
PropertyNotInUse = -10_850,
Initialized = -10_849,
InvalidOfflineRender = -10_848,
Unauthorized = -10_847,
Unknown = 18446744073709540770,
}
Variants§
InvalidProperty = -10_879
InvalidParameter = -10_878
InvalidElement = -10_877
NoConnection = -10_876
FailedInitialization = -10_875
TooManyFramesToProcess = -10_874
InvalidFile = -10_871
FormatNotSupported = -10_868
Uninitialized = -10_867
InvalidScope = -10_866
PropertyNotWritable = -10_865
CannotDoInCurrentContext = -10_863
InvalidPropertyValue = -10_851
PropertyNotInUse = -10_850
Initialized = -10_849
InvalidOfflineRender = -10_848
Unknown = 18446744073709540770
Implementations§
Trait Implementations§
Source§impl Error for Error
impl Error for Error
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()
impl Copy for Error
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