Enum hexodsp::matrix_repr::MatrixDeserError
source · [−]pub enum MatrixDeserError {
BadVersion,
UnknownNode(String),
UnknownParamId(String),
Deserialization(String),
IO(String),
InvalidAtom(String),
MatrixError(MatrixError),
}
Variants
BadVersion
UnknownNode(String)
UnknownParamId(String)
Deserialization(String)
IO(String)
InvalidAtom(String)
MatrixError(MatrixError)
Trait Implementations
sourceimpl Clone for MatrixDeserError
impl Clone for MatrixDeserError
sourcefn clone(&self) -> MatrixDeserError
fn clone(&self) -> MatrixDeserError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for MatrixDeserError
impl Debug for MatrixDeserError
sourceimpl From<Error> for MatrixDeserError
impl From<Error> for MatrixDeserError
sourcefn from(err: Error) -> MatrixDeserError
fn from(err: Error) -> MatrixDeserError
Converts to this type from the input type.
sourceimpl From<Error> for MatrixDeserError
impl From<Error> for MatrixDeserError
sourcefn from(err: Error) -> MatrixDeserError
fn from(err: Error) -> MatrixDeserError
Converts to this type from the input type.
sourceimpl From<MatrixError> for MatrixDeserError
impl From<MatrixError> for MatrixDeserError
sourcefn from(err: MatrixError) -> Self
fn from(err: MatrixError) -> Self
Converts to this type from the input type.
sourceimpl From<Utf8Error> for MatrixDeserError
impl From<Utf8Error> for MatrixDeserError
sourcefn from(err: Utf8Error) -> MatrixDeserError
fn from(err: Utf8Error) -> MatrixDeserError
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for MatrixDeserError
impl Send for MatrixDeserError
impl Sync for MatrixDeserError
impl Unpin for MatrixDeserError
impl UnwindSafe for MatrixDeserError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more