pub struct Dynamic { /* private fields */ }Expand description
Dim of dynamically-sized algebraic entities.
Implementations
Trait Implementations
sourceimpl<T, C> Allocator<T, Dynamic, C> for DefaultAllocatorwhere
T: Scalar,
C: Dim,
impl<T, C> Allocator<T, Dynamic, C> for DefaultAllocatorwhere
T: Scalar,
C: Dim,
type Buffer = VecStorage<T, Dynamic, C>
type Buffer = VecStorage<T, Dynamic, C>
The type of buffer this allocator can instanciate.
type BufferUninit = VecStorage<MaybeUninit<T>, Dynamic, C>
type BufferUninit = VecStorage<MaybeUninit<T>, Dynamic, C>
The type of buffer with uninitialized components this allocator can instanciate.
sourcefn allocate_uninit(
nrows: Dynamic,
ncols: C
) -> VecStorage<MaybeUninit<T>, Dynamic, C>
fn allocate_uninit(
nrows: Dynamic,
ncols: C
) -> VecStorage<MaybeUninit<T>, Dynamic, C>
Allocates a buffer with the given number of rows and columns without initializing its content.
sourceunsafe fn assume_init(
uninit: VecStorage<MaybeUninit<T>, Dynamic, C>
) -> VecStorage<T, Dynamic, C>
unsafe fn assume_init(
uninit: VecStorage<MaybeUninit<T>, Dynamic, C>
) -> VecStorage<T, Dynamic, C>
Assumes a data buffer to be initialized. Read more
sourcefn allocate_from_iterator<I>(
nrows: Dynamic,
ncols: C,
iter: I
) -> <DefaultAllocator as Allocator<T, Dynamic, C>>::Bufferwhere
I: IntoIterator<Item = T>,
fn allocate_from_iterator<I>(
nrows: Dynamic,
ncols: C,
iter: I
) -> <DefaultAllocator as Allocator<T, Dynamic, C>>::Bufferwhere
I: IntoIterator<Item = T>,
Allocates a buffer initialized with the content of the given iterator.
sourcefn allocate_from_row_iterator<I>(nrows: R, ncols: C, iter: I) -> Self::Bufferwhere
I: IntoIterator<Item = T>,
fn allocate_from_row_iterator<I>(nrows: R, ncols: C, iter: I) -> Self::Bufferwhere
I: IntoIterator<Item = T>,
Allocates a buffer initialized with the content of the given row-major order iterator.
sourceimpl<T, R> Allocator<T, R, Dynamic> for DefaultAllocatorwhere
T: Scalar,
R: DimName,
impl<T, R> Allocator<T, R, Dynamic> for DefaultAllocatorwhere
T: Scalar,
R: DimName,
type Buffer = VecStorage<T, R, Dynamic>
type Buffer = VecStorage<T, R, Dynamic>
The type of buffer this allocator can instanciate.
type BufferUninit = VecStorage<MaybeUninit<T>, R, Dynamic>
type BufferUninit = VecStorage<MaybeUninit<T>, R, Dynamic>
The type of buffer with uninitialized components this allocator can instanciate.
sourcefn allocate_uninit(
nrows: R,
ncols: Dynamic
) -> VecStorage<MaybeUninit<T>, R, Dynamic>
fn allocate_uninit(
nrows: R,
ncols: Dynamic
) -> VecStorage<MaybeUninit<T>, R, Dynamic>
Allocates a buffer with the given number of rows and columns without initializing its content.
sourceunsafe fn assume_init(
uninit: VecStorage<MaybeUninit<T>, R, Dynamic>
) -> VecStorage<T, R, Dynamic>
unsafe fn assume_init(
uninit: VecStorage<MaybeUninit<T>, R, Dynamic>
) -> VecStorage<T, R, Dynamic>
Assumes a data buffer to be initialized. Read more
sourcefn allocate_from_iterator<I>(
nrows: R,
ncols: Dynamic,
iter: I
) -> <DefaultAllocator as Allocator<T, R, Dynamic>>::Bufferwhere
I: IntoIterator<Item = T>,
fn allocate_from_iterator<I>(
nrows: R,
ncols: Dynamic,
iter: I
) -> <DefaultAllocator as Allocator<T, R, Dynamic>>::Bufferwhere
I: IntoIterator<Item = T>,
Allocates a buffer initialized with the content of the given iterator.
sourcefn allocate_from_row_iterator<I>(nrows: R, ncols: C, iter: I) -> Self::Bufferwhere
I: IntoIterator<Item = T>,
fn allocate_from_row_iterator<I>(nrows: R, ncols: C, iter: I) -> Self::Bufferwhere
I: IntoIterator<Item = T>,
Allocates a buffer initialized with the content of the given row-major order iterator.
sourceimpl Dim for Dynamic
impl Dim for Dynamic
sourcefn try_to_usize() -> Option<usize>
fn try_to_usize() -> Option<usize>
Gets the compile-time value of
Self. Returns None if it is not known, i.e., if Self = Dynamic. Read moresourcefn from_usize(dim: usize) -> Dynamic
fn from_usize(dim: usize) -> Dynamic
Builds an instance of
Self from a run-time value. Panics if Self is a type-level
integer and dim != Self::try_to_usize().unwrap(). Read moresourcefn value(&self) -> usize
fn value(&self) -> usize
Gets the run-time value of
self. For type-level integers, this is the same as
Self::try_to_usize().unwrap(). Read morefn is<D>() -> boolwhere
D: Dim,
sourceimpl<D> DimEq<D, Dynamic> for ShapeConstraintwhere
D: DimName,
impl<D> DimEq<D, Dynamic> for ShapeConstraintwhere
D: DimName,
type Representative = D
type Representative = D
This is either equal to
D1 or D2, always choosing the one (if any) which is a type-level
constant. Read moresourceimpl<D> DimEq<Dynamic, D> for ShapeConstraintwhere
D: DimName,
impl<D> DimEq<Dynamic, D> for ShapeConstraintwhere
D: DimName,
type Representative = D
type Representative = D
This is either equal to
D1 or D2, always choosing the one (if any) which is a type-level
constant. Read moresourceimpl<T, C> RawStorage<T, Dynamic, C> for VecStorage<T, Dynamic, C>where
C: Dim,
impl<T, C> RawStorage<T, Dynamic, C> for VecStorage<T, Dynamic, C>where
C: Dim,
sourcefn shape(&self) -> (Dynamic, C)
fn shape(&self) -> (Dynamic, 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. Read moresourcefn strides(
&self
) -> (<VecStorage<T, Dynamic, C> as RawStorage<T, Dynamic, C>>::RStride, <VecStorage<T, Dynamic, C> as RawStorage<T, Dynamic, C>>::CStride)
fn strides(
&self
) -> (<VecStorage<T, Dynamic, C> as RawStorage<T, Dynamic, C>>::RStride, <VecStorage<T, Dynamic, C> as RawStorage<T, Dynamic, C>>::CStride)
The spacing between consecutive row elements and consecutive column elements. Read more
sourcefn is_contiguous(&self) -> bool
fn is_contiguous(&self) -> bool
Indicates whether this data buffer stores its elements contiguously. Read more
sourceunsafe fn as_slice_unchecked(&self) -> &[T]ⓘ
unsafe fn as_slice_unchecked(&self) -> &[T]ⓘ
Retrieves the data buffer as a contiguous slice. Read more
sourcefn 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
sourcefn 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
sourcefn 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
sourceunsafe fn get_unchecked_linear(&self, i: usize) -> &T
unsafe fn get_unchecked_linear(&self, i: usize) -> &T
Retrieves a reference to the i-th element without bound-checking. Read more
sourceimpl<T, R> RawStorage<T, R, Dynamic> for VecStorage<T, R, Dynamic>where
R: DimName,
impl<T, R> RawStorage<T, R, Dynamic> for VecStorage<T, R, Dynamic>where
R: DimName,
type CStride = R
type CStride = R
The static stride of this storage’s columns.
sourcefn shape(&self) -> (R, Dynamic)
fn shape(&self) -> (R, Dynamic)
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. Read moresourcefn strides(
&self
) -> (<VecStorage<T, R, Dynamic> as RawStorage<T, R, Dynamic>>::RStride, <VecStorage<T, R, Dynamic> as RawStorage<T, R, Dynamic>>::CStride)
fn strides(
&self
) -> (<VecStorage<T, R, Dynamic> as RawStorage<T, R, Dynamic>>::RStride, <VecStorage<T, R, Dynamic> as RawStorage<T, R, Dynamic>>::CStride)
The spacing between consecutive row elements and consecutive column elements. Read more
sourcefn is_contiguous(&self) -> bool
fn is_contiguous(&self) -> bool
Indicates whether this data buffer stores its elements contiguously. Read more
sourceunsafe fn as_slice_unchecked(&self) -> &[T]ⓘ
unsafe fn as_slice_unchecked(&self) -> &[T]ⓘ
Retrieves the data buffer as a contiguous slice. Read more
sourcefn 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
sourcefn 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
sourcefn 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
sourceunsafe fn get_unchecked_linear(&self, i: usize) -> &T
unsafe fn get_unchecked_linear(&self, i: usize) -> &T
Retrieves a reference to the i-th element without bound-checking. Read more
sourceimpl<T, C> RawStorageMut<T, Dynamic, C> for VecStorage<T, Dynamic, C>where
C: Dim,
impl<T, C> RawStorageMut<T, Dynamic, C> for VecStorage<T, Dynamic, C>where
C: Dim,
sourceunsafe 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
sourcefn 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
sourcefn 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
sourceunsafe 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
sourceunsafe 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 moresourceunsafe fn swap_unchecked_linear(&mut self, i1: usize, i2: usize)
unsafe fn swap_unchecked_linear(&mut self, i1: usize, i2: usize)
Swaps two elements using their linear index without bound-checking. Read more
sourceimpl<T, R> RawStorageMut<T, R, Dynamic> for VecStorage<T, R, Dynamic>where
R: DimName,
impl<T, R> RawStorageMut<T, R, Dynamic> for VecStorage<T, R, Dynamic>where
R: DimName,
sourceunsafe 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
sourcefn 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
sourcefn 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
sourceunsafe 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
sourceunsafe 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 moresourceunsafe fn swap_unchecked_linear(&mut self, i1: usize, i2: usize)
unsafe fn swap_unchecked_linear(&mut self, i1: usize, i2: usize)
Swaps two elements using their linear index without bound-checking. Read more
sourceimpl<T, CTo, const RFROM: usize, const CFROM: usize> Reallocator<T, Const<RFROM>, Const<CFROM>, Dynamic, CTo> for DefaultAllocatorwhere
T: Scalar,
CTo: Dim,
impl<T, CTo, const RFROM: usize, const CFROM: usize> Reallocator<T, Const<RFROM>, Const<CFROM>, Dynamic, CTo> for DefaultAllocatorwhere
T: Scalar,
CTo: Dim,
sourceunsafe fn reallocate_copy(
rto: Dynamic,
cto: CTo,
buf: ArrayStorage<T, RFROM, CFROM>
) -> VecStorage<MaybeUninit<T>, Dynamic, CTo>
unsafe fn reallocate_copy(
rto: Dynamic,
cto: CTo,
buf: ArrayStorage<T, RFROM, CFROM>
) -> VecStorage<MaybeUninit<T>, Dynamic, CTo>
Reallocates a buffer of shape
(RTo, CTo), possibly reusing a previously allocated buffer
buf. Data stored by buf are linearly copied to the output: Read moresourceimpl<T, RTo, const RFROM: usize, const CFROM: usize> Reallocator<T, Const<RFROM>, Const<CFROM>, RTo, Dynamic> for DefaultAllocatorwhere
T: Scalar,
RTo: DimName,
impl<T, RTo, const RFROM: usize, const CFROM: usize> Reallocator<T, Const<RFROM>, Const<CFROM>, RTo, Dynamic> for DefaultAllocatorwhere
T: Scalar,
RTo: DimName,
sourceunsafe fn reallocate_copy(
rto: RTo,
cto: Dynamic,
buf: ArrayStorage<T, RFROM, CFROM>
) -> VecStorage<MaybeUninit<T>, RTo, Dynamic>
unsafe fn reallocate_copy(
rto: RTo,
cto: Dynamic,
buf: ArrayStorage<T, RFROM, CFROM>
) -> VecStorage<MaybeUninit<T>, RTo, Dynamic>
Reallocates a buffer of shape
(RTo, CTo), possibly reusing a previously allocated buffer
buf. Data stored by buf are linearly copied to the output: Read moresourceimpl<T, CFrom, CTo> Reallocator<T, Dynamic, CFrom, Dynamic, CTo> for DefaultAllocatorwhere
T: Scalar,
CFrom: Dim,
CTo: Dim,
impl<T, CFrom, CTo> Reallocator<T, Dynamic, CFrom, Dynamic, CTo> for DefaultAllocatorwhere
T: Scalar,
CFrom: Dim,
CTo: Dim,
sourceunsafe fn reallocate_copy(
rto: Dynamic,
cto: CTo,
buf: VecStorage<T, Dynamic, CFrom>
) -> VecStorage<MaybeUninit<T>, Dynamic, CTo>
unsafe fn reallocate_copy(
rto: Dynamic,
cto: CTo,
buf: VecStorage<T, Dynamic, CFrom>
) -> VecStorage<MaybeUninit<T>, Dynamic, CTo>
Reallocates a buffer of shape
(RTo, CTo), possibly reusing a previously allocated buffer
buf. Data stored by buf are linearly copied to the output: Read moresourceimpl<T, CFrom, RTo> Reallocator<T, Dynamic, CFrom, RTo, Dynamic> for DefaultAllocatorwhere
T: Scalar,
CFrom: Dim,
RTo: DimName,
impl<T, CFrom, RTo> Reallocator<T, Dynamic, CFrom, RTo, Dynamic> for DefaultAllocatorwhere
T: Scalar,
CFrom: Dim,
RTo: DimName,
sourceunsafe fn reallocate_copy(
rto: RTo,
cto: Dynamic,
buf: VecStorage<T, Dynamic, CFrom>
) -> VecStorage<MaybeUninit<T>, RTo, Dynamic>
unsafe fn reallocate_copy(
rto: RTo,
cto: Dynamic,
buf: VecStorage<T, Dynamic, CFrom>
) -> VecStorage<MaybeUninit<T>, RTo, Dynamic>
Reallocates a buffer of shape
(RTo, CTo), possibly reusing a previously allocated buffer
buf. Data stored by buf are linearly copied to the output: Read moresourceimpl<T, RFrom, CTo> Reallocator<T, RFrom, Dynamic, Dynamic, CTo> for DefaultAllocatorwhere
T: Scalar,
RFrom: DimName,
CTo: Dim,
impl<T, RFrom, CTo> Reallocator<T, RFrom, Dynamic, Dynamic, CTo> for DefaultAllocatorwhere
T: Scalar,
RFrom: DimName,
CTo: Dim,
sourceunsafe fn reallocate_copy(
rto: Dynamic,
cto: CTo,
buf: VecStorage<T, RFrom, Dynamic>
) -> VecStorage<MaybeUninit<T>, Dynamic, CTo>
unsafe fn reallocate_copy(
rto: Dynamic,
cto: CTo,
buf: VecStorage<T, RFrom, Dynamic>
) -> VecStorage<MaybeUninit<T>, Dynamic, CTo>
Reallocates a buffer of shape
(RTo, CTo), possibly reusing a previously allocated buffer
buf. Data stored by buf are linearly copied to the output: Read moresourceimpl<T, RFrom, RTo> Reallocator<T, RFrom, Dynamic, RTo, Dynamic> for DefaultAllocatorwhere
T: Scalar,
RFrom: DimName,
RTo: DimName,
impl<T, RFrom, RTo> Reallocator<T, RFrom, Dynamic, RTo, Dynamic> for DefaultAllocatorwhere
T: Scalar,
RFrom: DimName,
RTo: DimName,
sourceunsafe fn reallocate_copy(
rto: RTo,
cto: Dynamic,
buf: VecStorage<T, RFrom, Dynamic>
) -> VecStorage<MaybeUninit<T>, RTo, Dynamic>
unsafe fn reallocate_copy(
rto: RTo,
cto: Dynamic,
buf: VecStorage<T, RFrom, Dynamic>
) -> VecStorage<MaybeUninit<T>, RTo, Dynamic>
Reallocates a buffer of shape
(RTo, CTo), possibly reusing a previously allocated buffer
buf. Data stored by buf are linearly copied to the output: Read moresourceimpl<T, C1, C2> ReshapableStorage<T, Dynamic, C1, Dynamic, C2> for VecStorage<T, Dynamic, C1>where
T: Scalar,
C1: Dim,
C2: Dim,
impl<T, C1, C2> ReshapableStorage<T, Dynamic, C1, Dynamic, C2> for VecStorage<T, Dynamic, C1>where
T: Scalar,
C1: Dim,
C2: Dim,
type Output = VecStorage<T, Dynamic, C2>
type Output = VecStorage<T, Dynamic, C2>
The reshaped storage type.
sourcefn reshape_generic(
self,
nrows: Dynamic,
ncols: C2
) -> <VecStorage<T, Dynamic, C1> as ReshapableStorage<T, Dynamic, C1, Dynamic, C2>>::Output
fn reshape_generic(
self,
nrows: Dynamic,
ncols: C2
) -> <VecStorage<T, Dynamic, C1> as ReshapableStorage<T, Dynamic, C1, Dynamic, C2>>::Output
Reshapes the storage into the output storage type.
sourceimpl<T, C1, R2> ReshapableStorage<T, Dynamic, C1, R2, Dynamic> for VecStorage<T, Dynamic, C1>where
T: Scalar,
C1: Dim,
R2: DimName,
impl<T, C1, R2> ReshapableStorage<T, Dynamic, C1, R2, Dynamic> for VecStorage<T, Dynamic, C1>where
T: Scalar,
C1: Dim,
R2: DimName,
type Output = VecStorage<T, R2, Dynamic>
type Output = VecStorage<T, R2, Dynamic>
The reshaped storage type.
sourcefn reshape_generic(
self,
nrows: R2,
ncols: Dynamic
) -> <VecStorage<T, Dynamic, C1> as ReshapableStorage<T, Dynamic, C1, R2, Dynamic>>::Output
fn reshape_generic(
self,
nrows: R2,
ncols: Dynamic
) -> <VecStorage<T, Dynamic, C1> as ReshapableStorage<T, Dynamic, C1, R2, Dynamic>>::Output
Reshapes the storage into the output storage type.
sourceimpl<T, R1, C2> ReshapableStorage<T, R1, Dynamic, Dynamic, C2> for VecStorage<T, R1, Dynamic>where
T: Scalar,
R1: DimName,
C2: Dim,
impl<T, R1, C2> ReshapableStorage<T, R1, Dynamic, Dynamic, C2> for VecStorage<T, R1, Dynamic>where
T: Scalar,
R1: DimName,
C2: Dim,
type Output = VecStorage<T, Dynamic, C2>
type Output = VecStorage<T, Dynamic, C2>
The reshaped storage type.
sourcefn reshape_generic(
self,
nrows: Dynamic,
ncols: C2
) -> <VecStorage<T, R1, Dynamic> as ReshapableStorage<T, R1, Dynamic, Dynamic, C2>>::Output
fn reshape_generic(
self,
nrows: Dynamic,
ncols: C2
) -> <VecStorage<T, R1, Dynamic> as ReshapableStorage<T, R1, Dynamic, Dynamic, C2>>::Output
Reshapes the storage into the output storage type.
sourceimpl<T, R1, R2> ReshapableStorage<T, R1, Dynamic, R2, Dynamic> for VecStorage<T, R1, Dynamic>where
T: Scalar,
R1: DimName,
R2: DimName,
impl<T, R1, R2> ReshapableStorage<T, R1, Dynamic, R2, Dynamic> for VecStorage<T, R1, Dynamic>where
T: Scalar,
R1: DimName,
R2: DimName,
type Output = VecStorage<T, R2, Dynamic>
type Output = VecStorage<T, R2, Dynamic>
The reshaped storage type.
sourcefn reshape_generic(
self,
nrows: R2,
ncols: Dynamic
) -> <VecStorage<T, R1, Dynamic> as ReshapableStorage<T, R1, Dynamic, R2, Dynamic>>::Output
fn reshape_generic(
self,
nrows: R2,
ncols: Dynamic
) -> <VecStorage<T, R1, Dynamic> as ReshapableStorage<T, R1, Dynamic, R2, Dynamic>>::Output
Reshapes the storage into the output storage type.
sourceimpl<D> SameDimension<D, Dynamic> for ShapeConstraintwhere
D: DimName,
impl<D> SameDimension<D, Dynamic> for ShapeConstraintwhere
D: DimName,
type Representative = D
type Representative = D
This is either equal to
D1 or D2, always choosing the one (if any) which is a type-level
constant. Read moresourceimpl<D> SameDimension<Dynamic, D> for ShapeConstraintwhere
D: DimName,
impl<D> SameDimension<Dynamic, D> for ShapeConstraintwhere
D: DimName,
type Representative = D
type Representative = D
This is either equal to
D1 or D2, always choosing the one (if any) which is a type-level
constant. Read moresourceimpl<D> SameNumberOfColumns<D, Dynamic> for ShapeConstraintwhere
D: DimName,
impl<D> SameNumberOfColumns<D, Dynamic> for ShapeConstraintwhere
D: DimName,
type Representative = D
type Representative = D
This is either equal to
D1 or D2, always choosing the one (if any) which is a type-level
constant. Read moresourceimpl<D> SameNumberOfColumns<Dynamic, D> for ShapeConstraintwhere
D: DimName,
impl<D> SameNumberOfColumns<Dynamic, D> for ShapeConstraintwhere
D: DimName,
type Representative = D
type Representative = D
This is either equal to
D1 or D2, always choosing the one (if any) which is a type-level
constant. Read moresourceimpl<D> SameNumberOfRows<D, Dynamic> for ShapeConstraintwhere
D: DimName,
impl<D> SameNumberOfRows<D, Dynamic> for ShapeConstraintwhere
D: DimName,
type Representative = D
type Representative = D
This is either equal to
D1 or D2, always choosing the one (if any) which is a type-level
constant. Read moresourceimpl<D> SameNumberOfRows<Dynamic, D> for ShapeConstraintwhere
D: DimName,
impl<D> SameNumberOfRows<Dynamic, D> for ShapeConstraintwhere
D: DimName,
type Representative = D
type Representative = D
This is either equal to
D1 or D2, always choosing the one (if any) which is a type-level
constant. Read moresourceimpl<T, C> Storage<T, Dynamic, C> for VecStorage<T, Dynamic, C>where
T: Scalar,
C: Dim,
DefaultAllocator: Allocator<T, Dynamic, C, Buffer = VecStorage<T, Dynamic, C>>,
impl<T, C> Storage<T, Dynamic, C> for VecStorage<T, Dynamic, C>where
T: Scalar,
C: Dim,
DefaultAllocator: Allocator<T, Dynamic, C, Buffer = VecStorage<T, Dynamic, C>>,
sourcefn into_owned(self) -> <DefaultAllocator as Allocator<T, Dynamic, C>>::Bufferwhere
DefaultAllocator: Allocator<T, Dynamic, C>,
fn into_owned(self) -> <DefaultAllocator as Allocator<T, Dynamic, C>>::Bufferwhere
DefaultAllocator: Allocator<T, Dynamic, C>,
Builds a matrix data storage that does not contain any reference.
sourcefn clone_owned(&self) -> <DefaultAllocator as Allocator<T, Dynamic, C>>::Bufferwhere
DefaultAllocator: Allocator<T, Dynamic, C>,
fn clone_owned(&self) -> <DefaultAllocator as Allocator<T, Dynamic, C>>::Bufferwhere
DefaultAllocator: Allocator<T, Dynamic, C>,
Clones this data storage to one that does not contain any reference.
sourceimpl<T, R> Storage<T, R, Dynamic> for VecStorage<T, R, Dynamic>where
T: Scalar,
R: DimName,
DefaultAllocator: Allocator<T, R, Dynamic, Buffer = VecStorage<T, R, Dynamic>>,
impl<T, R> Storage<T, R, Dynamic> for VecStorage<T, R, Dynamic>where
T: Scalar,
R: DimName,
DefaultAllocator: Allocator<T, R, Dynamic, Buffer = VecStorage<T, R, Dynamic>>,
sourcefn into_owned(self) -> <DefaultAllocator as Allocator<T, R, Dynamic>>::Bufferwhere
DefaultAllocator: Allocator<T, R, Dynamic>,
fn into_owned(self) -> <DefaultAllocator as Allocator<T, R, Dynamic>>::Bufferwhere
DefaultAllocator: Allocator<T, R, Dynamic>,
Builds a matrix data storage that does not contain any reference.
sourcefn clone_owned(&self) -> <DefaultAllocator as Allocator<T, R, Dynamic>>::Bufferwhere
DefaultAllocator: Allocator<T, R, Dynamic>,
fn clone_owned(&self) -> <DefaultAllocator as Allocator<T, R, Dynamic>>::Bufferwhere
DefaultAllocator: Allocator<T, R, Dynamic>,
Clones this data storage to one that does not contain any reference.
impl Copy for Dynamic
impl Eq for Dynamic
impl IsDynamic for Dynamic
impl IsNotStaticOne for Dynamic
impl StructuralEq for Dynamic
impl StructuralPartialEq for Dynamic
Auto Trait Implementations
impl RefUnwindSafe for Dynamic
impl Send for Dynamic
impl Sync for Dynamic
impl Unpin for Dynamic
impl UnwindSafe for Dynamic
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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 morefn 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.