pub struct PropertySet {
pub name: String,
pub properties: Vec<Property>,
}Expand description
A property set containing multiple properties
Fields§
§name: StringProperty set name (e.g., “Pset_WallCommon”)
properties: Vec<Property>Properties in this set
Implementations§
Trait Implementations§
Source§impl Clone for PropertySet
impl Clone for PropertySet
Source§fn clone(&self) -> PropertySet
fn clone(&self) -> PropertySet
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 PropertySet
impl Debug for PropertySet
Source§impl<'de> Deserialize<'de> for PropertySet
impl<'de> Deserialize<'de> for PropertySet
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 PropertySet
impl PartialEq for PropertySet
Source§impl Serialize for PropertySet
impl Serialize for PropertySet
impl StructuralPartialEq for PropertySet
Auto Trait Implementations§
impl Freeze for PropertySet
impl RefUnwindSafe for PropertySet
impl Send for PropertySet
impl Sync for PropertySet
impl Unpin for PropertySet
impl UnsafeUnpin for PropertySet
impl UnwindSafe for PropertySet
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