#[repr(i32)]pub enum FsrError {
Show 15 variants
InvalidPointer = -2_147_483_648,
InvalidAlignment = -2_147_483_647,
InvalidSize = -2_147_483_646,
Eof = -2_147_483_643,
InvalidPath = -2_147_483_644,
MalfmoredData = -2_147_483_642,
OutOfMemory = -2_147_483_641,
IncompleteInterface = -2_147_483_640,
InvalidEnum = -2_147_483_639,
InvalidArgument = -2_147_483_638,
OutOfRange = -2_147_483_637,
NullDevice = -2_147_483_636,
BackendApiError = -2_147_483_635,
InsufficientMemory = -2_147_483_634,
Unknown = 0,
}Variants§
InvalidPointer = -2_147_483_648
InvalidAlignment = -2_147_483_647
InvalidSize = -2_147_483_646
Eof = -2_147_483_643
InvalidPath = -2_147_483_644
MalfmoredData = -2_147_483_642
OutOfMemory = -2_147_483_641
IncompleteInterface = -2_147_483_640
InvalidEnum = -2_147_483_639
InvalidArgument = -2_147_483_638
OutOfRange = -2_147_483_637
NullDevice = -2_147_483_636
BackendApiError = -2_147_483_635
InsufficientMemory = -2_147_483_634
Unknown = 0
Trait Implementations§
Source§impl Error for FsrError
impl Error for FsrError
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()
Auto Trait Implementations§
impl Freeze for FsrError
impl RefUnwindSafe for FsrError
impl Send for FsrError
impl Sync for FsrError
impl Unpin for FsrError
impl UnwindSafe for FsrError
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