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