pub struct ObjectTypeSupport {
pub object_type: ObjectType,
pub createable: bool,
pub deleteable: bool,
pub supported_properties: Vec<PropertySupport>,
}Expand description
Object type support declaration (Annex A.3).
Fields§
§object_type: ObjectType§createable: bool§deleteable: bool§supported_properties: Vec<PropertySupport>Trait Implementations§
Source§impl Clone for ObjectTypeSupport
impl Clone for ObjectTypeSupport
Source§fn clone(&self) -> ObjectTypeSupport
fn clone(&self) -> ObjectTypeSupport
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ObjectTypeSupport
impl RefUnwindSafe for ObjectTypeSupport
impl Send for ObjectTypeSupport
impl Sync for ObjectTypeSupport
impl Unpin for ObjectTypeSupport
impl UnsafeUnpin for ObjectTypeSupport
impl UnwindSafe for ObjectTypeSupport
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