Enum sprs::CompressedStorage[][src]

pub enum CompressedStorage {
    CSR,
    CSC,
}

Describe the storage of a CsMat

Variants

Compressed row storage

Compressed column storage

Methods

impl CompressedStorage
[src]

Get the other storage, ie return CSC if we were CSR, and vice versa

Trait Implementations

impl Clone for CompressedStorage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for CompressedStorage
[src]

impl PartialEq for CompressedStorage
[src]

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

This method tests for !=.

impl Eq for CompressedStorage
[src]

impl Debug for CompressedStorage
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations