pub struct Object {
pub type_: u32,
pub id: u32,
pub properties: Vec<Property>,
}
Expand description
An object from a pod.
Fields§
§type_: u32
the object type.
id: u32
the object id.
properties: Vec<Property>
the object properties.
Trait Implementations§
source§impl PartialEq for Object
impl PartialEq for Object
impl StructuralPartialEq for Object
Auto Trait Implementations§
impl RefUnwindSafe for Object
impl !Send for Object
impl !Sync for Object
impl Unpin for Object
impl UnwindSafe for Object
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