Enum matrix::Shape [] [src]

pub enum Shape {
    Square(usize),
    Rectangular(usizeusize),
}

A matrix shape.

Variants

Square(usize)

A square shape.

Rectangular(usizeusize)

A rectangular shape.

Trait Implementations

impl PartialEq for Shape
[src]

fn eq(&self, __arg_0: &Shape) -> bool

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

fn ne(&self, __arg_0: &Shape) -> bool

This method tests for !=.

impl Eq for Shape
[src]

impl Debug for Shape
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Copy for Shape
[src]

impl Clone for Shape
[src]

fn clone(&self) -> Shape

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