Enum arrayfire::SparseFormat
[−]
[src]
#[repr(C)]pub enum SparseFormat { DENSE, CSR, CSC, COO, }
Sparse storage format type
Variants
DENSEDense format
CSRCompressed sparse row format
CSCCompressed sparse coloumn format
COOCoordinate list (row, coloumn, value) tuples.
Trait Implementations
impl Clone for SparseFormat[src]
fn clone(&self) -> SparseFormat
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Copy for SparseFormat[src]
impl Debug for SparseFormat[src]
impl PartialEq for SparseFormat[src]
fn eq(&self, __arg_0: &SparseFormat) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl From<i32> for SparseFormat[src]
fn from(t: i32) -> SparseFormat
Performs the conversion.