pub struct PropertySetList {
pub sets: Vec<PropertySet>,
}Expand description
A list of property sets (PropertySetList datatype).
Fields§
§sets: Vec<PropertySet>The property sets.
Trait Implementations§
Source§impl Clone for PropertySetList
impl Clone for PropertySetList
Source§fn clone(&self) -> PropertySetList
fn clone(&self) -> PropertySetList
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 PropertySetList
impl Debug for PropertySetList
Source§impl Default for PropertySetList
impl Default for PropertySetList
Source§fn default() -> PropertySetList
fn default() -> PropertySetList
Returns the “default value” for a type. Read more
Source§impl PartialEq for PropertySetList
impl PartialEq for PropertySetList
Source§fn eq(&self, other: &PropertySetList) -> bool
fn eq(&self, other: &PropertySetList) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PropertySetList
Auto Trait Implementations§
impl Freeze for PropertySetList
impl RefUnwindSafe for PropertySetList
impl Send for PropertySetList
impl Sync for PropertySetList
impl Unpin for PropertySetList
impl UnsafeUnpin for PropertySetList
impl UnwindSafe for PropertySetList
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