pub enum Enumerated {
Units(EngineeringUnits),
Binary(Binary),
ObjectType(ObjectType),
EventState(EventState),
NotifyType(NotifyType),
LoggingType(LoggingType),
Unknown(u32),
}Variants§
Units(EngineeringUnits)
Binary(Binary)
ObjectType(ObjectType)
EventState(EventState)
NotifyType(NotifyType)
LoggingType(LoggingType)
Unknown(u32)
Implementations§
Trait Implementations§
source§impl Clone for Enumerated
impl Clone for Enumerated
source§fn clone(&self) -> Enumerated
fn clone(&self) -> Enumerated
Returns a copy 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 RefUnwindSafe for Enumerated
impl Send for Enumerated
impl Sync for Enumerated
impl Unpin for Enumerated
impl UnwindSafe for Enumerated
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