Enum linxal::generate::Packing [] [src]

#[repr(u8)]
pub enum Packing { Full, UpperOnly, LowerOnly, }

The packing type for a generated matrix.

For symmetric matrices,, the result can sometimes be

Variants

All of the entries of the matrix will be returned.

Only the upper triangular portion of the matrix is filled in, with the rest as zeros.

Only the lower triangular portion of the matrix is filled in, with the rest as zeros.

Trait Implementations

impl PartialEq for Packing
[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 Packing
[src]

impl Clone for Packing
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Packing
[src]