pub struct VectorPrimitiveValue<T> {
pub values: Vec<T>,
pub fixed_length: bool,
}Expand description
An AMF vector of a some subtype
Fields§
§values: Vec<T>The contents of this Vector
fixed_length: boolIs this vector of a fixed length
Trait Implementations§
Source§impl<T: Clone> Clone for VectorPrimitiveValue<T>
impl<T: Clone> Clone for VectorPrimitiveValue<T>
Source§fn clone(&self) -> VectorPrimitiveValue<T>
fn clone(&self) -> VectorPrimitiveValue<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 moreSource§impl<T: Debug> Debug for VectorPrimitiveValue<T>
impl<T: Debug> Debug for VectorPrimitiveValue<T>
Source§impl<T: PartialEq> PartialEq for VectorPrimitiveValue<T>
impl<T: PartialEq> PartialEq for VectorPrimitiveValue<T>
impl<T: PartialEq> StructuralPartialEq for VectorPrimitiveValue<T>
Auto Trait Implementations§
impl<T> Freeze for VectorPrimitiveValue<T>
impl<T> RefUnwindSafe for VectorPrimitiveValue<T>where
Vec<T>: RefUnwindSafe,
impl<T> Send for VectorPrimitiveValue<T>
impl<T> Sync for VectorPrimitiveValue<T>
impl<T> Unpin for VectorPrimitiveValue<T>
impl<T> UnsafeUnpin for VectorPrimitiveValue<T>where
Vec<T>: UnsafeUnpin,
impl<T> UnwindSafe for VectorPrimitiveValue<T>where
Vec<T>: 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