Enum arrayfire::SparseFormat [] [src]

#[repr(C)]
pub enum SparseFormat { DENSE, CSR, CSC, COO, }

Sparse storage format type

Variants

Dense format

Compressed sparse row format

Compressed sparse coloumn format

Coordinate list (row, coloumn, value) tuples.

Trait Implementations

impl Clone for SparseFormat
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for SparseFormat
[src]

impl Debug for SparseFormat
[src]

Formats the value using the given formatter.

impl PartialEq for SparseFormat
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<i32> for SparseFormat
[src]

Performs the conversion.