[][src]Struct nalgebra::base::SliceStorageMut

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

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

Implementations

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

pub unsafe fn from_raw_parts(
    ptr: *mut N,
    shape: (R, C),
    strides: (RStride, CStride)
) -> Self where
    RStride: Dim,
    CStride: Dim
[src]

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

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

pub unsafe fn new_unchecked<RStor, CStor, S>(
    storage: &'a mut S,
    start: (usize, usize),
    shape: (R, C)
) -> SliceStorageMut<'a, N, R, C, S::RStride, S::CStride> where
    RStor: Dim,
    CStor: Dim,
    S: StorageMut<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 mut S,
    start: (usize, usize),
    shape: (R, C),
    strides: (RStride, CStride)
) -> SliceStorageMut<'a, N, R, C, RStride, CStride> where
    RStor: Dim,
    CStor: Dim,
    S: StorageMut<N, RStor, CStor>,
    RStride: Dim,
    CStride: Dim
[src]

Create a new matrix slice without bound checking.

Trait Implementations

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

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

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

impl<'a, N: Scalar, R: Dim, CStride: Dim> ContiguousStorageMut<N, R, U1> for SliceStorageMut<'a, N, R, U1, U1, CStride>[src]

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

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

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

type RStride = RStride

The static stride of this storage's rows.

type CStride = CStride

The static stride of this storage's columns.

impl<'a, N: Scalar, R: Dim, C: Dim, RStride: Dim, CStride: Dim> StorageMut<N, R, C> for SliceStorageMut<'a, N, R, C, RStride, CStride>[src]

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

Auto Trait Implementations

impl<'a, N, R, C, RStride, CStride> RefUnwindSafe for SliceStorageMut<'a, N, R, C, RStride, CStride> where
    C: RefUnwindSafe,
    CStride: RefUnwindSafe,
    N: RefUnwindSafe,
    R: RefUnwindSafe,
    RStride: RefUnwindSafe
[src]

impl<'a, N, R, C, RStride, CStride> Unpin for SliceStorageMut<'a, N, R, C, RStride, CStride> where
    C: Unpin,
    CStride: Unpin,
    R: Unpin,
    RStride: Unpin
[src]

impl<'a, N, R, C, RStride, CStride> !UnwindSafe for SliceStorageMut<'a, N, R, C, RStride, CStride>[src]

Blanket Implementations

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

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

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

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

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

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

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,