pub enum ArrayPropertyStructValue {
InventoryItem(InventoryItem),
GUID(String),
FINNetworkTrace(FINNetworkTrace),
Vector(Vector<f64>),
LinearColor(Color<f32>),
FINGPUT1BufferPixel(FINGPUT1BufferPixel),
Properties(Vec<Property>),
None,
}Variants§
InventoryItem(InventoryItem)
GUID(String)
FINNetworkTrace(FINNetworkTrace)
Vector(Vector<f64>)
LinearColor(Color<f32>)
FINGPUT1BufferPixel(FINGPUT1BufferPixel)
Properties(Vec<Property>)
None
Trait Implementations§
source§impl Clone for ArrayPropertyStructValue
impl Clone for ArrayPropertyStructValue
source§fn clone(&self) -> ArrayPropertyStructValue
fn clone(&self) -> ArrayPropertyStructValue
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 moresource§impl Debug for ArrayPropertyStructValue
impl Debug for ArrayPropertyStructValue
source§impl Default for ArrayPropertyStructValue
impl Default for ArrayPropertyStructValue
source§fn default() -> ArrayPropertyStructValue
fn default() -> ArrayPropertyStructValue
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ArrayPropertyStructValue
impl<'de> Deserialize<'de> for ArrayPropertyStructValue
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ArrayPropertyStructValue
impl RefUnwindSafe for ArrayPropertyStructValue
impl Send for ArrayPropertyStructValue
impl Sync for ArrayPropertyStructValue
impl Unpin for ArrayPropertyStructValue
impl UnwindSafe for ArrayPropertyStructValue
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