pub struct VectorObjectValue {
pub values: Vec<Value>,
pub object_type_name: String,
pub fixed_length: bool,
}Expand description
An AMF vector of Objects
Fields§
§values: Vec<Value>The contents of this Vector
object_type_name: StringThe name of the class this is a vector of
fixed_length: boolIs this vector of a fixed length
Trait Implementations§
Source§impl Clone for VectorObjectValue
impl Clone for VectorObjectValue
Source§fn clone(&self) -> VectorObjectValue
fn clone(&self) -> VectorObjectValue
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 Debug for VectorObjectValue
impl Debug for VectorObjectValue
Source§impl PartialEq for VectorObjectValue
impl PartialEq for VectorObjectValue
impl StructuralPartialEq for VectorObjectValue
Auto Trait Implementations§
impl Freeze for VectorObjectValue
impl RefUnwindSafe for VectorObjectValue
impl Send for VectorObjectValue
impl Sync for VectorObjectValue
impl Unpin for VectorObjectValue
impl UnsafeUnpin for VectorObjectValue
impl UnwindSafe for VectorObjectValue
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