pub struct ConstArray<D: Dialect> {
pub index: Id,
pub item: Item<D>,
pub size: u32,
pub values: Vec<Variable<D>>,
}
Fields§
§index: Id
§item: Item<D>
§size: u32
§values: Vec<Variable<D>>
Trait Implementations§
Source§impl<D: Clone + Dialect> Clone for ConstArray<D>
impl<D: Clone + Dialect> Clone for ConstArray<D>
Source§fn clone(&self) -> ConstArray<D>
fn clone(&self) -> ConstArray<D>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl<D: Dialect> StructuralPartialEq for ConstArray<D>
Auto Trait Implementations§
impl<D> Freeze for ConstArray<D>
impl<D> RefUnwindSafe for ConstArray<D>where
D: RefUnwindSafe,
impl<D> Send for ConstArray<D>
impl<D> Sync for ConstArray<D>
impl<D> Unpin for ConstArray<D>where
D: Unpin,
impl<D> UnwindSafe for ConstArray<D>where
D: UnwindSafe,
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