Enum convey_rs::property::MapPropertyKey
source · pub enum MapPropertyKey {
Int(i32),
Long(i64),
String(String),
Object(ObjectReference),
IntVector(Vector<i32>),
FloatVector(Vector<f32>),
DoubleVector(Vector<f64>),
Properties(Vec<Property>),
}Variants§
Int(i32)
Long(i64)
String(String)
Object(ObjectReference)
IntVector(Vector<i32>)
FloatVector(Vector<f32>)
DoubleVector(Vector<f64>)
Properties(Vec<Property>)
Trait Implementations§
source§impl Clone for MapPropertyKey
impl Clone for MapPropertyKey
source§fn clone(&self) -> MapPropertyKey
fn clone(&self) -> MapPropertyKey
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 MapPropertyKey
impl Debug for MapPropertyKey
source§impl<'de> Deserialize<'de> for MapPropertyKey
impl<'de> Deserialize<'de> for MapPropertyKey
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 MapPropertyKey
impl RefUnwindSafe for MapPropertyKey
impl Send for MapPropertyKey
impl Sync for MapPropertyKey
impl Unpin for MapPropertyKey
impl UnwindSafe for MapPropertyKey
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