pub enum SynthesizerError {
Unsupported,
InvalidSyntaxElementValue(&'static str),
ConversionError(TryFromIntError),
ObuWriter(ObuWriterError),
Io(Error),
}
Variants§
Unsupported
InvalidSyntaxElementValue(&'static str)
ConversionError(TryFromIntError)
ObuWriter(ObuWriterError)
Io(Error)
Trait Implementations§
Source§impl Debug for SynthesizerError
impl Debug for SynthesizerError
Source§impl Display for SynthesizerError
impl Display for SynthesizerError
Source§impl Error for SynthesizerError
impl Error for SynthesizerError
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<Error> for SynthesizerError
impl From<Error> for SynthesizerError
Source§impl From<ObuWriterError> for SynthesizerError
impl From<ObuWriterError> for SynthesizerError
Source§fn from(source: ObuWriterError) -> Self
fn from(source: ObuWriterError) -> Self
Converts to this type from the input type.
Source§impl From<SynthesizerError> for EncodeError
impl From<SynthesizerError> for EncodeError
Source§fn from(source: AV1SynthesizerError) -> Self
fn from(source: AV1SynthesizerError) -> Self
Converts to this type from the input type.
Source§impl From<TryFromIntError> for SynthesizerError
impl From<TryFromIntError> for SynthesizerError
Source§fn from(source: TryFromIntError) -> Self
fn from(source: TryFromIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SynthesizerError
impl !RefUnwindSafe for SynthesizerError
impl Send for SynthesizerError
impl Sync for SynthesizerError
impl Unpin for SynthesizerError
impl !UnwindSafe for SynthesizerError
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