pub struct DesignProperty {
pub name: String,
pub value: DesignValue,
}Fields§
§name: String§value: DesignValueTrait Implementations§
Source§impl Clone for DesignProperty
impl Clone for DesignProperty
Source§fn clone(&self) -> DesignProperty
fn clone(&self) -> DesignProperty
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DesignProperty
impl Debug for DesignProperty
Source§impl<'de> Deserialize<'de> for DesignProperty
impl<'de> Deserialize<'de> for DesignProperty
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 DesignProperty
impl PartialEq for DesignProperty
Source§fn eq(&self, other: &DesignProperty) -> bool
fn eq(&self, other: &DesignProperty) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DesignProperty
impl Serialize for DesignProperty
impl StructuralPartialEq for DesignProperty
Auto Trait Implementations§
impl Freeze for DesignProperty
impl RefUnwindSafe for DesignProperty
impl Send for DesignProperty
impl Sync for DesignProperty
impl Unpin for DesignProperty
impl UnsafeUnpin for DesignProperty
impl UnwindSafe for DesignProperty
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