pub struct SupportedObjectType {
pub object_type: ObjectType,
pub createable: bool,
pub deletable: bool,
}Expand description
A BACnet object type supported by the device.
Fields§
§object_type: ObjectTypeThe object type.
createable: boolWhether objects of this type can be dynamically created.
deletable: boolWhether objects of this type can be dynamically deleted.
Trait Implementations§
Source§impl Clone for SupportedObjectType
impl Clone for SupportedObjectType
Source§fn clone(&self) -> SupportedObjectType
fn clone(&self) -> SupportedObjectType
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 SupportedObjectType
impl RefUnwindSafe for SupportedObjectType
impl Send for SupportedObjectType
impl Sync for SupportedObjectType
impl Unpin for SupportedObjectType
impl UnsafeUnpin for SupportedObjectType
impl UnwindSafe for SupportedObjectType
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