Struct Dyn

Source
pub struct Dyn(pub usize);
Expand description

Dim of dynamically-sized algebraic entities.

Tuple Fields§

§0: usize

Implementations§

Source§

impl Dyn

Source

pub const fn new(value: usize) -> Dyn

👎Deprecated: use Dyn(value) instead.

A dynamic size equal to value.

Trait Implementations§

Source§

impl Add<usize> for Dyn

Source§

type Output = Dyn

The resulting type after applying the + operator.
Source§

fn add(self, rhs: usize) -> Dyn

Performs the + operation. Read more
Source§

impl<C> Allocator<Dyn, C> for DefaultAllocator
where C: Dim,

Source§

type Buffer<T: Scalar> = VecStorage<T, Dyn, C>

The type of buffer this allocator can instantiate.
Source§

type BufferUninit<T: Scalar> = VecStorage<MaybeUninit<T>, Dyn, C>

The type of buffer with uninitialized components this allocator can instantiate.
Source§

fn allocate_uninit<T>( nrows: Dyn, ncols: C, ) -> VecStorage<MaybeUninit<T>, Dyn, C>
where T: Scalar,

Allocates a buffer with the given number of rows and columns without initializing its content.
Source§

unsafe fn assume_init<T>( uninit: VecStorage<MaybeUninit<T>, Dyn, C>, ) -> VecStorage<T, Dyn, C>
where T: Scalar,

Assumes a data buffer to be initialized. Read more
Source§

fn allocate_from_iterator<T, I>( nrows: Dyn, ncols: C, iter: I, ) -> <DefaultAllocator as Allocator<Dyn, C>>::Buffer<T>
where T: Scalar, I: IntoIterator<Item = T>,

Allocates a buffer initialized with the content of the given iterator.
Source§

fn allocate_from_row_iterator<T, I>( nrows: R, ncols: C, iter: I, ) -> Self::Buffer<T>
where T: Scalar, I: IntoIterator<Item = T>,

Allocates a buffer initialized with the content of the given row-major order iterator.
Source§

impl<R> Allocator<R, Dyn> for DefaultAllocator
where R: DimName,

Source§

type Buffer<T: Scalar> = VecStorage<T, R, Dyn>

The type of buffer this allocator can instantiate.
Source§

type BufferUninit<T: Scalar> = VecStorage<MaybeUninit<T>, R, Dyn>

The type of buffer with uninitialized components this allocator can instantiate.
Source§

fn allocate_uninit<T>( nrows: R, ncols: Dyn, ) -> VecStorage<MaybeUninit<T>, R, Dyn>
where T: Scalar,

Allocates a buffer with the given number of rows and columns without initializing its content.
Source§

unsafe fn assume_init<T>( uninit: VecStorage<MaybeUninit<T>, R, Dyn>, ) -> VecStorage<T, R, Dyn>
where T: Scalar,

Assumes a data buffer to be initialized. Read more
Source§

fn allocate_from_iterator<T, I>( nrows: R, ncols: Dyn, iter: I, ) -> <DefaultAllocator as Allocator<R, Dyn>>::Buffer<T>
where T: Scalar, I: IntoIterator<Item = T>,

Allocates a buffer initialized with the content of the given iterator.
Source§

fn allocate_from_row_iterator<T, I>( nrows: R, ncols: C, iter: I, ) -> Self::Buffer<T>
where T: Scalar, I: IntoIterator<Item = T>,

Allocates a buffer initialized with the content of the given row-major order iterator.
Source§

impl Clone for Dyn

Source§

fn clone(&self) -> Dyn

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Dyn

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Dim for Dyn

Source§

fn try_to_usize() -> Option<usize>

Gets the compile-time value of Self. Returns None if it is not known, i.e., if Self = Dyn.
Source§

fn from_usize(dim: usize) -> Dyn

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().
Source§

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().
Source§

fn is<D>() -> bool
where D: Dim,

Source§

impl<D> DimAdd<D> for Dyn
where D: Dim,

Source§

type Output = Dyn

Source§

fn add(self, other: D) -> Dyn

Source§

impl<D> DimDiv<D> for Dyn
where D: Dim,

Source§

type Output = Dyn

Source§

fn div(self, other: D) -> Dyn

Source§

impl<D> DimMax<D> for Dyn
where D: Dim,

Source§

type Output = Dyn

Source§

fn max(self, other: D) -> Dyn

Source§

impl<D> DimMin<D> for Dyn
where D: Dim,

Source§

type Output = Dyn

Source§

fn min(self, other: D) -> Dyn

Source§

impl<D> DimMul<D> for Dyn
where D: Dim,

Source§

type Output = Dyn

Source§

fn mul(self, other: D) -> Dyn

Source§

impl<D> DimSub<D> for Dyn
where D: Dim,

Source§

type Output = Dyn

Source§

fn sub(self, other: D) -> Dyn

Source§

impl PartialEq for Dyn

Source§

fn eq(&self, other: &Dyn) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T, CTo, const RFROM: usize, const CFROM: usize> Reallocator<T, Const<RFROM>, Const<CFROM>, Dyn, CTo> for DefaultAllocator
where T: Scalar, CTo: Dim,

Source§

unsafe fn reallocate_copy( rto: Dyn, cto: CTo, buf: ArrayStorage<T, RFROM, CFROM>, ) -> VecStorage<MaybeUninit<T>, Dyn, 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 more
Source§

impl<T, RTo, const RFROM: usize, const CFROM: usize> Reallocator<T, Const<RFROM>, Const<CFROM>, RTo, Dyn> for DefaultAllocator
where T: Scalar, RTo: DimName,

Source§

unsafe fn reallocate_copy( rto: RTo, cto: Dyn, buf: ArrayStorage<T, RFROM, CFROM>, ) -> VecStorage<MaybeUninit<T>, RTo, Dyn>

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 more
Source§

impl<T, CFrom, CTo> Reallocator<T, Dyn, CFrom, Dyn, CTo> for DefaultAllocator
where T: Scalar, CFrom: Dim, CTo: Dim,

Source§

unsafe fn reallocate_copy( rto: Dyn, cto: CTo, buf: VecStorage<T, Dyn, CFrom>, ) -> VecStorage<MaybeUninit<T>, Dyn, 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 more
Source§

impl<T, CFrom, RTo> Reallocator<T, Dyn, CFrom, RTo, Dyn> for DefaultAllocator
where T: Scalar, CFrom: Dim, RTo: DimName,

Source§

unsafe fn reallocate_copy( rto: RTo, cto: Dyn, buf: VecStorage<T, Dyn, CFrom>, ) -> VecStorage<MaybeUninit<T>, RTo, Dyn>

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 more
Source§

impl<T, RFrom, CTo> Reallocator<T, RFrom, Dyn, Dyn, CTo> for DefaultAllocator
where T: Scalar, RFrom: DimName, CTo: Dim,

Source§

unsafe fn reallocate_copy( rto: Dyn, cto: CTo, buf: VecStorage<T, RFrom, Dyn>, ) -> VecStorage<MaybeUninit<T>, Dyn, 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 more
Source§

impl<T, RFrom, RTo> Reallocator<T, RFrom, Dyn, RTo, Dyn> for DefaultAllocator
where T: Scalar, RFrom: DimName, RTo: DimName,

Source§

unsafe fn reallocate_copy( rto: RTo, cto: Dyn, buf: VecStorage<T, RFrom, Dyn>, ) -> VecStorage<MaybeUninit<T>, RTo, Dyn>

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 more
Source§

impl Sub<usize> for Dyn

Source§

type Output = Dyn

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: usize) -> Dyn

Performs the - operation. Read more
Source§

impl Copy for Dyn

Source§

impl Eq for Dyn

Source§

impl IsDynamic for Dyn

Source§

impl IsNotStaticOne for Dyn

Source§

impl StructuralPartialEq for Dyn

Auto Trait Implementations§

§

impl Freeze for Dyn

§

impl RefUnwindSafe for Dyn

§

impl Send for Dyn

§

impl Sync for Dyn

§

impl Unpin for Dyn

§

impl UnwindSafe for Dyn

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<D> DimAdd<Dyn> for D
where D: DimName,

Source§

type Output = Dyn

Source§

fn add(self, other: Dyn) -> Dyn

Source§

impl<D> DimDiv<Dyn> for D
where D: DimName,

Source§

type Output = Dyn

Source§

fn div(self, other: Dyn) -> Dyn

Source§

impl<D> DimMax<Dyn> for D
where D: DimName,

Source§

type Output = Dyn

Source§

fn max(self, other: Dyn) -> Dyn

Source§

impl<D> DimMin<Dyn> for D
where D: DimName,

Source§

type Output = Dyn

Source§

fn min(self, other: Dyn) -> Dyn

Source§

impl<D> DimMul<Dyn> for D
where D: DimName,

Source§

type Output = Dyn

Source§

fn mul(self, other: Dyn) -> Dyn

Source§

impl<D> DimSub<Dyn> for D
where D: DimName,

Source§

type Output = Dyn

Source§

fn sub(self, other: Dyn) -> Dyn

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,