pub enum SerializablePropertyData {
Str(String),
OsdStr(String),
Flag(bool),
Int64(i64),
Double(f64),
}Variants§
Trait Implementations§
Source§impl Clone for SerializablePropertyData
impl Clone for SerializablePropertyData
Source§fn clone(&self) -> SerializablePropertyData
fn clone(&self) -> SerializablePropertyData
Returns a duplicate 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 SerializablePropertyData
impl Debug for SerializablePropertyData
Source§impl<'a> From<PropertyData<'a>> for SerializablePropertyData
impl<'a> From<PropertyData<'a>> for SerializablePropertyData
Source§fn from(data: PropertyData<'a>) -> Self
fn from(data: PropertyData<'a>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SerializablePropertyData
impl RefUnwindSafe for SerializablePropertyData
impl Send for SerializablePropertyData
impl Sync for SerializablePropertyData
impl Unpin for SerializablePropertyData
impl UnwindSafe for SerializablePropertyData
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