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 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 Enumerated
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