pub enum OneOfnotification {
event(Event),
value_change(ValueChange),
obj_creation(ObjectCreation),
obj_deletion(ObjectDeletion),
oper_complete(OperationComplete),
on_board_req(OnBoardRequest),
None,
}Variants§
event(Event)
value_change(ValueChange)
obj_creation(ObjectCreation)
obj_deletion(ObjectDeletion)
oper_complete(OperationComplete)
on_board_req(OnBoardRequest)
None
Trait Implementations§
Source§impl Clone for OneOfnotification
impl Clone for OneOfnotification
Source§fn clone(&self) -> OneOfnotification
fn clone(&self) -> OneOfnotification
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 moreSource§impl Debug for OneOfnotification
impl Debug for OneOfnotification
Source§impl Default for OneOfnotification
impl Default for OneOfnotification
Source§impl PartialEq for OneOfnotification
impl PartialEq for OneOfnotification
impl StructuralPartialEq for OneOfnotification
Auto Trait Implementations§
impl Freeze for OneOfnotification
impl RefUnwindSafe for OneOfnotification
impl Send for OneOfnotification
impl Sync for OneOfnotification
impl Unpin for OneOfnotification
impl UnwindSafe for OneOfnotification
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