#[non_exhaustive]pub enum MovieError {
HeaderTruncated {
expected: usize,
got: usize,
},
BadMagic {
got: [u8; 8],
},
UnsupportedFormat {
got: u16,
max: u16,
},
UnsupportedFrameWidth {
got: u8,
max: u8,
},
BadRegion(u8),
Eof(usize),
BadSaveState(SnapshotError),
RomMismatch,
}Expand description
Errors produced by movie encode / decode / playback.
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.
HeaderTruncated
The blob is shorter than the fixed header.
BadMagic
The magic prefix is wrong.
UnsupportedFormat
The container format version is outside the range we understand.
UnsupportedFrameWidth
The header declared more bytes-per-frame than this build understands.
BadRegion(u8)
The region byte is not a value this build understands.
Eof(usize)
The body (start point and/or input stream) ran past EOF.
BadSaveState(SnapshotError)
The embedded start-point save state failed to apply.
RomMismatch
The running ROM’s hash does not match the movie’s recorded hash.
Trait Implementations§
Source§impl Debug for MovieError
impl Debug for MovieError
Source§impl Display for MovieError
impl Display for MovieError
Source§impl Error for MovieError
impl Error for MovieError
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<SnapshotError> for MovieError
impl From<SnapshotError> for MovieError
Source§fn from(source: SnapshotError) -> Self
fn from(source: SnapshotError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MovieError
impl RefUnwindSafe for MovieError
impl Send for MovieError
impl Sync for MovieError
impl Unpin for MovieError
impl UnsafeUnpin for MovieError
impl UnwindSafe for MovieError
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