pub struct ConstArray {
pub id: Id,
pub length: u32,
pub item: Type,
pub values: Vec<Variable>,
}Fields§
§id: Id§length: u32§item: Type§values: Vec<Variable>Trait Implementations§
Source§impl Clone for ConstArray
impl Clone for ConstArray
Source§fn clone(&self) -> ConstArray
fn clone(&self) -> ConstArray
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ConstArray
impl RefUnwindSafe for ConstArray
impl Send for ConstArray
impl Sync for ConstArray
impl Unpin for ConstArray
impl UnwindSafe for ConstArray
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