pub struct ConstArray<'a, T>where
T: PrimitiveElement,{ /* private fields */ }Expand description
An array of constant values of a primitive type.
Implementations§
Source§impl<'a, T: PrimitiveElement + Copy> ConstArray<'a, T>
impl<'a, T: PrimitiveElement + Copy> ConstArray<'a, T>
Trait Implementations§
Source§impl<'a, T> Clone for ConstArray<'a, T>where
T: PrimitiveElement + Clone,
impl<'a, T> Clone for ConstArray<'a, T>where
T: PrimitiveElement + Clone,
Source§fn clone(&self) -> ConstArray<'a, T>
fn clone(&self) -> ConstArray<'a, T>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a, T> Copy for ConstArray<'a, T>where
T: PrimitiveElement + Copy,
Source§impl<T> Debug for ConstArray<'_, T>
impl<T> Debug for ConstArray<'_, T>
Auto Trait Implementations§
impl<'a, T> !RefUnwindSafe for ConstArray<'a, T>
impl<'a, T> !Send for ConstArray<'a, T>
impl<'a, T> !Sync for ConstArray<'a, T>
impl<'a, T> !UnwindSafe for ConstArray<'a, T>
impl<'a, T> Freeze for ConstArray<'a, T>
impl<'a, T> Unpin for ConstArray<'a, T>where
T: Unpin,
impl<'a, T> UnsafeUnpin for ConstArray<'a, T>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more