pub struct Property {
pub key: u32,
pub flags: PropertyFlags,
pub value: Value,
}
Expand description
An object property.
Fields§
§key: u32
key of the property, list of valid keys depends on the object type.
flags: PropertyFlags
flags for the property.
value: Value
value of the property.
Implementations§
Trait Implementations§
source§impl PartialEq for Property
impl PartialEq for Property
impl StructuralPartialEq for Property
Auto Trait Implementations§
impl RefUnwindSafe for Property
impl !Send for Property
impl !Sync for Property
impl Unpin 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