pub enum CustomPropertyValueValue {
String(String),
Array(Vec<String>),
}
Expand description
CustomPropertyValueValue : The value assigned to the property The value assigned to the property
Variants§
Trait Implementations§
Source§impl Clone for CustomPropertyValueValue
impl Clone for CustomPropertyValueValue
Source§fn clone(&self) -> CustomPropertyValueValue
fn clone(&self) -> CustomPropertyValueValue
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 CustomPropertyValueValue
impl Debug for CustomPropertyValueValue
Source§impl Default for CustomPropertyValueValue
impl Default for CustomPropertyValueValue
Source§impl<'de> Deserialize<'de> for CustomPropertyValueValue
impl<'de> Deserialize<'de> for CustomPropertyValueValue
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
Source§impl PartialEq for CustomPropertyValueValue
impl PartialEq for CustomPropertyValueValue
Source§impl Serialize for CustomPropertyValueValue
impl Serialize for CustomPropertyValueValue
impl StructuralPartialEq for CustomPropertyValueValue
Auto Trait Implementations§
impl Freeze for CustomPropertyValueValue
impl RefUnwindSafe for CustomPropertyValueValue
impl Send for CustomPropertyValueValue
impl Sync for CustomPropertyValueValue
impl Unpin for CustomPropertyValueValue
impl UnwindSafe for CustomPropertyValueValue
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