pub struct PropertySet {
pub properties: BTreeMap<String, PropertyValue>,
}Expand description
One IfcPropertySet.
Fields§
§properties: BTreeMap<String, PropertyValue>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 (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 PropertySet
impl Debug for PropertySet
Source§impl Default for PropertySet
impl Default for PropertySet
Source§fn default() -> PropertySet
fn default() -> PropertySet
Returns the “default value” for a type. Read more
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§fn eq(&self, other: &PropertySet) -> bool
fn eq(&self, other: &PropertySet) -> bool
Tests for
self and other values to be equal, and is used by ==.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