pub enum SynthesizerError {
Unsupported,
NaluWriter(NaluWriterError),
}
Variants§
Unsupported
NaluWriter(NaluWriterError)
Trait Implementations§
Source§impl Debug for SynthesizerError
impl Debug for SynthesizerError
Source§impl Display for SynthesizerError
impl Display for SynthesizerError
Source§impl From<NaluWriterError> for SynthesizerError
impl From<NaluWriterError> for SynthesizerError
Source§fn from(err: NaluWriterError) -> Self
fn from(err: NaluWriterError) -> 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