pub struct ViewStorageMut<'a, T, R, C, RStride, CStride>where
R: Dim,
C: Dim,
RStride: Dim,
CStride: Dim,{ /* private fields */ }Expand description
A mutable matrix data storage for mutable matrix view. Only contains an internal mutable reference to another matrix data storage.
Implementations§
source§impl<'a, T, R, C, RStride, CStride> ViewStorageMut<'a, T, R, C, RStride, CStride>where
R: Dim,
C: Dim,
RStride: Dim,
CStride: Dim,
impl<'a, T, R, C, RStride, CStride> ViewStorageMut<'a, T, R, C, RStride, CStride>where R: Dim, C: Dim, RStride: Dim, CStride: Dim,
sourcepub unsafe fn from_raw_parts(
ptr: *mut T,
shape: (R, C),
strides: (RStride, CStride)
) -> ViewStorageMut<'a, T, R, C, RStride, CStride>where
RStride: Dim,
CStride: Dim,
pub unsafe fn from_raw_parts( ptr: *mut T, shape: (R, C), strides: (RStride, CStride) ) -> ViewStorageMut<'a, T, R, C, RStride, CStride>where RStride: Dim, CStride: Dim,
Create a new matrix view without bounds checking and from a raw pointer.
source§impl<'a, T, R, C> ViewStorageMut<'a, T, R, C, Dyn, Dyn>where
R: Dim,
C: Dim,
impl<'a, T, R, C> ViewStorageMut<'a, T, R, C, Dyn, Dyn>where R: Dim, C: Dim,
sourcepub unsafe fn new_unchecked<RStor, CStor, S>(
storage: &'a mut S,
start: (usize, usize),
shape: (R, C)
) -> ViewStorageMut<'a, T, R, C, <S as RawStorage<T, RStor, CStor>>::RStride, <S as RawStorage<T, RStor, CStor>>::CStride>where
RStor: Dim,
CStor: Dim,
S: RawStorageMut<T, RStor, CStor>,
pub unsafe fn new_unchecked<RStor, CStor, S>( storage: &'a mut S, start: (usize, usize), shape: (R, C) ) -> ViewStorageMut<'a, T, R, C, <S as RawStorage<T, RStor, CStor>>::RStride, <S as RawStorage<T, RStor, CStor>>::CStride>where RStor: Dim, CStor: Dim, S: RawStorageMut<T, RStor, CStor>,
Create a new matrix view without bounds checking.
sourcepub unsafe fn new_with_strides_unchecked<S, RStor, CStor, RStride, CStride>(
storage: &'a mut S,
start: (usize, usize),
shape: (R, C),
strides: (RStride, CStride)
) -> ViewStorageMut<'a, T, R, C, RStride, CStride>where
RStor: Dim,
CStor: Dim,
S: RawStorageMut<T, RStor, CStor>,
RStride: Dim,
CStride: Dim,
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) ) -> ViewStorageMut<'a, T, R, C, RStride, CStride>where RStor: Dim, CStor: Dim, S: RawStorageMut<T, RStor, CStor>, RStride: Dim, CStride: Dim,
Create a new matrix view without bounds checking.
source§impl<'a, T, R, C, RStride, CStride> ViewStorageMut<'a, T, R, C, RStride, CStride>where
R: Dim,
C: Dim,
RStride: Dim,
CStride: Dim,
ViewStorageMut<'a, T, R, C, RStride, CStride>: RawStorage<T, R, C> + IsContiguous,
impl<'a, T, R, C, RStride, CStride> ViewStorageMut<'a, T, R, C, RStride, CStride>where R: Dim, C: Dim, RStride: Dim, CStride: Dim, ViewStorageMut<'a, T, R, C, RStride, CStride>: RawStorage<T, R, C> + IsContiguous,
sourcepub fn into_slice(self) -> &'a [T]
pub fn into_slice(self) -> &'a [T]
Extracts the original slice from this storage.
source§impl<'a, T, R, C, RStride, CStride> ViewStorageMut<'a, T, R, C, RStride, CStride>where
T: Scalar,
R: Dim,
C: Dim,
RStride: Dim,
CStride: Dim,
ViewStorageMut<'a, T, R, C, RStride, CStride>: RawStorageMut<T, R, C> + IsContiguous,
impl<'a, T, R, C, RStride, CStride> ViewStorageMut<'a, T, R, C, RStride, CStride>where T: Scalar, R: Dim, C: Dim, RStride: Dim, CStride: Dim, ViewStorageMut<'a, T, R, C, RStride, CStride>: RawStorageMut<T, R, C> + IsContiguous,
sourcepub fn into_slice_mut(self) -> &'a mut [T]
pub fn into_slice_mut(self) -> &'a mut [T]
Extracts the original slice from this storage
Trait Implementations§
source§impl<'a, T, R, C, RStride, CStride> Debug for ViewStorageMut<'a, T, R, C, RStride, CStride>where
T: Debug,
R: Debug + Dim,
C: Debug + Dim,
RStride: Debug + Dim,
CStride: Debug + Dim,
impl<'a, T, R, C, RStride, CStride> Debug for ViewStorageMut<'a, T, R, C, RStride, CStride>where T: Debug, R: Debug + Dim, C: Debug + Dim, RStride: Debug + Dim, CStride: Debug + Dim,
source§impl<'a, T, R, C, RStride, CStride> RawStorage<T, R, C> for ViewStorageMut<'a, T, R, C, RStride, CStride>where
R: Dim,
C: Dim,
RStride: Dim,
CStride: Dim,
impl<'a, T, R, C, RStride, CStride> RawStorage<T, R, C> for ViewStorageMut<'a, T, R, C, RStride, CStride>where R: Dim, C: Dim, RStride: Dim, CStride: Dim,
source§fn shape(&self) -> (R, C)
fn shape(&self) -> (R, C)
The dimension of the matrix at run-time. Arr length of zero indicates the additive identity
element of any dimension. Must be equal to
Self::dimension() if it is not None.source§fn strides(
&self
) -> (<ViewStorageMut<'a, T, R, C, RStride, CStride> as RawStorage<T, R, C>>::RStride, <ViewStorageMut<'a, T, R, C, RStride, CStride> as RawStorage<T, R, C>>::CStride)
fn strides( &self ) -> (<ViewStorageMut<'a, T, R, C, RStride, CStride> as RawStorage<T, R, C>>::RStride, <ViewStorageMut<'a, T, R, C, RStride, CStride> as RawStorage<T, R, C>>::CStride)
The spacing between consecutive row elements and consecutive column elements. Read more
source§fn is_contiguous(&self) -> bool
fn is_contiguous(&self) -> bool
Indicates whether this data buffer stores its elements contiguously. Read more
source§unsafe fn as_slice_unchecked(&self) -> &[T]
unsafe fn as_slice_unchecked(&self) -> &[T]
Retrieves the data buffer as a contiguous slice. Read more
source§fn linear_index(&self, irow: usize, icol: usize) -> usize
fn linear_index(&self, irow: usize, icol: usize) -> usize
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
source§fn get_address_unchecked_linear(&self, i: usize) -> *const T
fn get_address_unchecked_linear(&self, i: usize) -> *const T
Gets the address of the i-th matrix component without performing bound-checking. Read more
source§fn get_address_unchecked(&self, irow: usize, icol: usize) -> *const T
fn get_address_unchecked(&self, irow: usize, icol: usize) -> *const T
Gets the address of the i-th matrix component without performing bound-checking. Read more
source§impl<'a, T, R, C, RStride, CStride> RawStorageMut<T, R, C> for ViewStorageMut<'a, T, R, C, RStride, CStride>where
R: Dim,
C: Dim,
RStride: Dim,
CStride: Dim,
impl<'a, T, R, C, RStride, CStride> RawStorageMut<T, R, C> for ViewStorageMut<'a, T, R, C, RStride, CStride>where R: Dim, C: Dim, RStride: Dim, CStride: Dim,
source§unsafe fn as_mut_slice_unchecked(&mut self) -> &mut [T]
unsafe fn as_mut_slice_unchecked(&mut self) -> &mut [T]
Retrieves the mutable data buffer as a contiguous slice. Read more
source§fn get_address_unchecked_linear_mut(&mut self, i: usize) -> *mut T
fn get_address_unchecked_linear_mut(&mut self, i: usize) -> *mut T
Gets the mutable address of the i-th matrix component without performing bound-checking. Read more
source§fn get_address_unchecked_mut(&mut self, irow: usize, icol: usize) -> *mut T
fn get_address_unchecked_mut(&mut self, irow: usize, icol: usize) -> *mut T
Gets the mutable address of the i-th matrix component without performing bound-checking. Read more
source§unsafe fn get_unchecked_linear_mut(&mut self, i: usize) -> &mut T
unsafe fn get_unchecked_linear_mut(&mut self, i: usize) -> &mut T
Retrieves a mutable reference to the i-th element without bound-checking. Read more
source§unsafe fn get_unchecked_mut(&mut self, irow: usize, icol: usize) -> &mut T
unsafe fn get_unchecked_mut(&mut self, irow: usize, icol: usize) -> &mut T
Retrieves a mutable reference to the element at
(irow, icol) without bound-checking. Read moresource§impl<'a, T, R1, C1, R2, C2> ReshapableStorage<T, R1, C1, R2, C2> for ViewStorageMut<'a, T, R1, C1, Const<1>, R1>where
T: Scalar,
R1: Dim,
C1: Dim,
R2: Dim,
C2: Dim,
impl<'a, T, R1, C1, R2, C2> ReshapableStorage<T, R1, C1, R2, C2> for ViewStorageMut<'a, T, R1, C1, Const<1>, R1>where T: Scalar, R1: Dim, C1: Dim, R2: Dim, C2: Dim,
§type Output = ViewStorageMut<'a, T, R2, C2, Const<1>, R2>
type Output = ViewStorageMut<'a, T, R2, C2, Const<1>, R2>
The reshaped storage type.
source§fn reshape_generic(
self,
nrows: R2,
ncols: C2
) -> <ViewStorageMut<'a, T, R1, C1, Const<1>, R1> as ReshapableStorage<T, R1, C1, R2, C2>>::Output
fn reshape_generic( self, nrows: R2, ncols: C2 ) -> <ViewStorageMut<'a, T, R1, C1, Const<1>, R1> as ReshapableStorage<T, R1, C1, R2, C2>>::Output
Reshapes the storage into the output storage type.
source§impl<'a, T, R, C, RStride, CStride> Storage<T, R, C> for ViewStorageMut<'a, T, R, C, RStride, CStride>where
T: Scalar,
R: Dim,
C: Dim,
RStride: Dim,
CStride: Dim,
impl<'a, T, R, C, RStride, CStride> Storage<T, R, C> for ViewStorageMut<'a, T, R, C, RStride, CStride>where T: Scalar, R: Dim, C: Dim, RStride: Dim, CStride: Dim,
source§fn into_owned(self) -> <DefaultAllocator as Allocator<T, R, C>>::Bufferwhere
DefaultAllocator: Allocator<T, R, C>,
fn into_owned(self) -> <DefaultAllocator as Allocator<T, R, C>>::Bufferwhere DefaultAllocator: Allocator<T, R, C>,
Builds a matrix data storage that does not contain any reference.
source§fn clone_owned(&self) -> <DefaultAllocator as Allocator<T, R, C>>::Bufferwhere
DefaultAllocator: Allocator<T, R, C>,
fn clone_owned(&self) -> <DefaultAllocator as Allocator<T, R, C>>::Bufferwhere DefaultAllocator: Allocator<T, R, C>,
Clones this data storage to one that does not contain any reference.
impl<'a, T, R, C> IsContiguous for ViewStorageMut<'a, T, R, C, Const<1>, R>where R: DimName, C: Dim + IsNotStaticOne,
impl<'a, T, R, CStride> IsContiguous for ViewStorageMut<'a, T, R, Const<1>, Const<1>, CStride>where R: Dim, CStride: Dim,
impl<'a, T, R, C, RStride, CStride> Send for ViewStorageMut<'a, T, R, C, RStride, CStride>where T: Send, R: Dim, C: Dim, RStride: Dim, CStride: Dim,
impl<'a, T, R, C, RStride, CStride> Sync for ViewStorageMut<'a, T, R, C, RStride, CStride>where T: Sync, R: Dim, C: Dim, RStride: Dim, CStride: Dim,
Auto Trait Implementations§
impl<'a, T, R, C, RStride, CStride> RefUnwindSafe for ViewStorageMut<'a, T, R, C, RStride, CStride>where C: RefUnwindSafe, CStride: RefUnwindSafe, R: RefUnwindSafe, RStride: RefUnwindSafe, T: RefUnwindSafe,
impl<'a, T, R, C, RStride, CStride> Unpin for ViewStorageMut<'a, T, R, C, RStride, CStride>where C: Unpin, CStride: Unpin, R: Unpin, RStride: Unpin,
impl<'a, T, R, C, RStride, CStride> !UnwindSafe for ViewStorageMut<'a, T, R, C, RStride, CStride>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.source§impl<T> FieldValue for Twhere
T: 'static,
impl<T> FieldValue for Twhere T: 'static,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> ScriptMessagePayload for Twhere
T: 'static + Send,
impl<T> ScriptMessagePayload for Twhere T: 'static + Send,
source§fn as_any_ref(&self) -> &(dyn Any + 'static)
fn as_any_ref(&self) -> &(dyn Any + 'static)
Returns
self as &dyn Anysource§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Returns
self as &dyn Any§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.