Enum lmutils::WriteMatrixError
source · pub enum WriteMatrixError {
IoError(Error),
CsvError(Error),
JsonError(Error),
RError(String),
RkyvError(String),
CborError(Error),
}Variants§
Trait Implementations§
source§impl Debug for WriteMatrixError
impl Debug for WriteMatrixError
source§impl Display for WriteMatrixError
impl Display for WriteMatrixError
source§impl Error for WriteMatrixError
impl Error for WriteMatrixError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 WriteMatrixError
impl From<Error> for WriteMatrixError
source§impl From<Error> for WriteMatrixError
impl From<Error> for WriteMatrixError
source§impl From<Error> for WriteMatrixError
impl From<Error> for WriteMatrixError
source§impl From<Error> for WriteMatrixError
impl From<Error> for WriteMatrixError
source§impl From<Error> for WriteMatrixError
impl From<Error> for WriteMatrixError
source§impl From<WriteMatrixError> for ConvertFileError
impl From<WriteMatrixError> for ConvertFileError
source§fn from(source: WriteMatrixError) -> Self
fn from(source: WriteMatrixError) -> Self
Converts to this type from the input type.
source§impl From<WriteMatrixError> for Error
impl From<WriteMatrixError> for Error
source§fn from(err: WriteMatrixError) -> Self
fn from(err: WriteMatrixError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WriteMatrixError
impl !RefUnwindSafe for WriteMatrixError
impl Send for WriteMatrixError
impl Sync for WriteMatrixError
impl Unpin for WriteMatrixError
impl !UnwindSafe for WriteMatrixError
Blanket Implementations§
source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Gets the layout of the type.
source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moresource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.