[][src]Struct na::base::SliceStorage

pub struct SliceStorage<'a, N, R, C, RStride, CStride> where
    C: Dim,
    CStride: Dim,
    N: Scalar + 'a,
    R: Dim,
    RStride: Dim
{ /* fields omitted */ }

A matrix data storage for a matrix slice. Only contains an internal reference to another matrix data storage.

Methods

impl<'a, N, R, C, RStride, CStride> SliceStorage<'a, N, R, C, RStride, CStride> where
    C: Dim,
    CStride: Dim,
    N: Scalar,
    R: Dim,
    RStride: Dim
[src]

pub unsafe fn from_raw_parts(
    ptr: *const N,
    shape: (R, C),
    strides: (RStride, CStride)
) -> SliceStorage<'a, N, R, C, RStride, CStride> where
    CStride: Dim,
    RStride: Dim
[src]

Create a new matrix slice without bound checking and from a raw pointer.

impl<'a, N, R, C> SliceStorage<'a, N, R, C, Dynamic, Dynamic> where
    C: Dim,
    N: Scalar,
    R: Dim
[src]

pub unsafe fn new_unchecked<RStor, CStor, S>(
    storage: &'a S,
    start: (usize, usize),
    shape: (R, C)
) -> SliceStorage<'a, N, R, C, <S as Storage<N, RStor, CStor>>::RStride, <S as Storage<N, RStor, CStor>>::CStride> where
    CStor: Dim,
    RStor: Dim,
    S: Storage<N, RStor, CStor>, 
[src]

Create a new matrix slice without bound checking.

pub unsafe fn new_with_strides_unchecked<S, RStor, CStor, RStride, CStride>(
    storage: &'a S,
    start: (usize, usize),
    shape: (R, C),
    strides: (RStride, CStride)
) -> SliceStorage<'a, N, R, C, RStride, CStride> where
    CStor: Dim,
    CStride: Dim,
    RStor: Dim,
    RStride: Dim,
    S: Storage<N, RStor, CStor>, 
[src]

Create a new matrix slice without bound checking.

Trait Implementations

impl<'a, N, R, C> ContiguousStorage<N, R, C> for SliceStorage<'a, N, R, C, U1, R> where
    C: IsNotStaticOne + Dim,
    N: Scalar,
    R: DimName
[src]

impl<'a, N, R, CStride> ContiguousStorage<N, R, U1> for SliceStorage<'a, N, R, U1, U1, CStride> where
    CStride: Dim,
    N: Scalar,
    R: Dim
[src]

impl<'a, N, R, C, RStride, CStride> Send for SliceStorage<'a, N, R, C, RStride, CStride> where
    C: Dim,
    CStride: Dim,
    N: Scalar + Send,
    R: Dim,
    RStride: Dim
[src]

impl<'a, N, R, C, RStride, CStride> Storage<N, R, C> for SliceStorage<'a, N, R, C, RStride, CStride> where
    C: Dim,
    CStride: Dim,
    N: Scalar,
    R: Dim,
    RStride: Dim
[src]

type RStride = RStride

The static stride of this storage's rows.

type CStride = CStride

The static stride of this storage's columns.

fn linear_index(&self, irow: usize, icol: usize) -> usize[src]

Compute the index corresponding to the irow-th row and icol-th column of this matrix. The index must be such that the following holds: Read more

unsafe fn get_address_unchecked_linear(&self, i: usize) -> *const N[src]

Gets the address of the i-th matrix component without performing bound-checking.

unsafe fn get_address_unchecked(&self, irow: usize, icol: usize) -> *const N[src]

Gets the address of the i-th matrix component without performing bound-checking.

unsafe fn get_unchecked_linear(&self, i: usize) -> &N[src]

Retrieves a reference to the i-th element without bound-checking.

unsafe fn get_unchecked(&self, irow: usize, icol: usize) -> &N[src]

Retrieves a reference to the i-th element without bound-checking.

impl<'a, N, R, C, RStride, CStride> Clone for SliceStorage<'a, N, R, C, RStride, CStride> where
    C: Dim,
    CStride: Dim,
    N: Scalar,
    R: Dim,
    RStride: Dim
[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a, N, R, C, RStride, CStride> Debug for SliceStorage<'a, N, R, C, RStride, CStride> where
    C: Dim + Debug,
    CStride: Dim + Debug,
    N: Scalar + Debug,
    R: Dim + Debug,
    RStride: Dim + Debug
[src]

impl<'a, N, R, C, RStride, CStride> Sync for SliceStorage<'a, N, R, C, RStride, CStride> where
    C: Dim,
    CStride: Dim,
    N: Scalar + Sync,
    R: Dim,
    RStride: Dim
[src]

impl<'a, N, R, C, RStride, CStride> Copy for SliceStorage<'a, N, R, C, RStride, CStride> where
    C: Dim,
    CStride: Dim,
    N: Scalar,
    R: Dim,
    RStride: Dim
[src]

Blanket Implementations

impl<V> IntoVec<V> for V[src]

impl<V> IntoPnt<V> for V[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]