pub struct ObjectInfo {
pub object_identifier: ObjectIdentifier,
pub object_name: Option<String>,
pub description: Option<String>,
pub present_value: Option<PropertyValue>,
pub units: Option<EngineeringUnits>,
pub status_flags: Option<Vec<bool>>,
}Expand description
Object information with common properties
Fields§
§object_identifier: ObjectIdentifier§object_name: Option<String>§description: Option<String>§present_value: Option<PropertyValue>§units: Option<EngineeringUnits>§status_flags: Option<Vec<bool>>Trait Implementations§
Source§impl Clone for ObjectInfo
impl Clone for ObjectInfo
Source§fn clone(&self) -> ObjectInfo
fn clone(&self) -> ObjectInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ObjectInfo
impl RefUnwindSafe for ObjectInfo
impl Send for ObjectInfo
impl Sync for ObjectInfo
impl Unpin for ObjectInfo
impl UnsafeUnpin for ObjectInfo
impl UnwindSafe for ObjectInfo
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