pub struct ArrayTypeValue<R: Reader<Offset = usize>> {
pub subrange_type_value: SubrangeTypeValue,
pub values: Vec<EvaluatorValue<R>>,
}
Expand description
Struct that represents a array type.
Fields§
§subrange_type_value: SubrangeTypeValue
subrange_type information.
values: Vec<EvaluatorValue<R>>
The list of values in the array.
Implementations§
Trait Implementations§
Source§impl<R: Clone + Reader<Offset = usize>> Clone for ArrayTypeValue<R>
impl<R: Clone + Reader<Offset = usize>> Clone for ArrayTypeValue<R>
Source§fn clone(&self) -> ArrayTypeValue<R>
fn clone(&self) -> ArrayTypeValue<R>
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 moreAuto Trait Implementations§
impl<R> Freeze for ArrayTypeValue<R>
impl<R> RefUnwindSafe for ArrayTypeValue<R>where
R: RefUnwindSafe,
impl<R> Send for ArrayTypeValue<R>where
R: Send,
impl<R> Sync for ArrayTypeValue<R>where
R: Sync,
impl<R> Unpin for ArrayTypeValue<R>where
R: Unpin,
impl<R> UnwindSafe for ArrayTypeValue<R>where
R: 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