Struct superlu::SuperMatrix [] [src]

pub struct SuperMatrix {
    // some fields omitted
}

A super matrix.

Methods

impl SuperMatrix
[src]

unsafe fn from_raw(raw: SuperMatrix) -> SuperMatrix

Create a matrix from a raw structure.

The underlying memory is considered to be owned, and it will be freed when the object goes out of scope.

fn into_raw(self) -> SuperMatrix

Consume the object returning the wrapped raw structure without freeing the underlying memory.

Trait Implementations

impl Drop for SuperMatrix
[src]

fn drop(&mut self)

A method called when the value goes out of scope. Read more