pub struct Property {
pub name: OwnedName,
pub value: Option<PropertyValue>,
pub properties: Vec<Property>,
}Expand description
Represents a property.
Fields§
§name: OwnedNameThe name of the property.
value: Option<PropertyValue>The value of the property.
properties: Vec<Property>Sub-properties of the property
Trait Implementations§
impl Eq for Property
impl StructuralPartialEq for Property
Source§impl WithProperties for Property
impl WithProperties for Property
Auto Trait Implementations§
impl Freeze for Property
impl RefUnwindSafe for Property
impl Send for Property
impl Sync for Property
impl Unpin for Property
impl UnsafeUnpin for Property
impl UnwindSafe for Property
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