#[repr(i16)]pub enum SparseMatrixCompressedAxis {
Row = 0,
Column = 1,
}
Variants§
Trait Implementations§
source§impl Clone for SparseMatrixCompressedAxis
impl Clone for SparseMatrixCompressedAxis
source§fn clone(&self) -> SparseMatrixCompressedAxis
fn clone(&self) -> SparseMatrixCompressedAxis
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SparseMatrixCompressedAxis
impl Debug for SparseMatrixCompressedAxis
source§impl<'de> Deserialize<'de> for SparseMatrixCompressedAxis
impl<'de> Deserialize<'de> for SparseMatrixCompressedAxis
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<SparseMatrixCompressedAxis> for i16
impl From<SparseMatrixCompressedAxis> for i16
source§fn from(value: SparseMatrixCompressedAxis) -> Self
fn from(value: SparseMatrixCompressedAxis) -> Self
Converts to this type from the input type.
source§impl PartialEq for SparseMatrixCompressedAxis
impl PartialEq for SparseMatrixCompressedAxis
source§fn eq(&self, other: &SparseMatrixCompressedAxis) -> bool
fn eq(&self, other: &SparseMatrixCompressedAxis) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<i16> for SparseMatrixCompressedAxis
impl TryFrom<i16> for SparseMatrixCompressedAxis
§type Error = UnknownEnumTagKind
type Error = UnknownEnumTagKind
The type returned in the event of a conversion error.
impl Copy for SparseMatrixCompressedAxis
impl Eq for SparseMatrixCompressedAxis
impl StructuralPartialEq for SparseMatrixCompressedAxis
impl<'buf> VectorWrite<SparseMatrixCompressedAxis> for SparseMatrixCompressedAxis
impl WriteAs<SparseMatrixCompressedAxis> for SparseMatrixCompressedAxis
impl WriteAsDefault<SparseMatrixCompressedAxis, SparseMatrixCompressedAxis> for SparseMatrixCompressedAxis
impl WriteAsOptional<SparseMatrixCompressedAxis> for SparseMatrixCompressedAxis
Auto Trait Implementations§
impl Freeze for SparseMatrixCompressedAxis
impl RefUnwindSafe for SparseMatrixCompressedAxis
impl Send for SparseMatrixCompressedAxis
impl Sync for SparseMatrixCompressedAxis
impl Unpin for SparseMatrixCompressedAxis
impl UnwindSafe for SparseMatrixCompressedAxis
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