Enum convey_rs::property::ArrayPropertyValue
source · pub enum ArrayPropertyValue {
Byte(u8),
Bool(u8),
Int(i32),
Long(i64),
Float(f32),
Enum(String),
Str(String),
Text(TextProperty),
Object(ObjectReference),
Struct(ArrayPropertyStructValue),
}Variants§
Byte(u8)
Bool(u8)
Int(i32)
Long(i64)
Float(f32)
Enum(String)
Str(String)
Text(TextProperty)
Object(ObjectReference)
Struct(ArrayPropertyStructValue)
Trait Implementations§
source§impl Clone for ArrayPropertyValue
impl Clone for ArrayPropertyValue
source§fn clone(&self) -> ArrayPropertyValue
fn clone(&self) -> ArrayPropertyValue
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 ArrayPropertyValue
impl Debug for ArrayPropertyValue
source§impl<'de> Deserialize<'de> for ArrayPropertyValue
impl<'de> Deserialize<'de> for ArrayPropertyValue
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 ArrayPropertyValue
impl RefUnwindSafe for ArrayPropertyValue
impl Send for ArrayPropertyValue
impl Sync for ArrayPropertyValue
impl Unpin for ArrayPropertyValue
impl UnwindSafe for ArrayPropertyValue
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