pub enum CarrierCrewServicesEventOperation {
Active,
Activate,
Deactivate,
Suspended,
Replace,
}
Expand description
The operation for this event. Note that some of these variants are for changes and some are for the current status. This is because sometimes the CarrierCrewServicesEvent is fired without a change in operation status.
Variants§
Active
The service is currently active.
Activate
The service is getting activated.
Deactivate
The service is getting deactivated.
Suspended
The service is currently suspended.
Replace
The service is getting replaced.
Trait Implementations§
Source§impl Clone for CarrierCrewServicesEventOperation
impl Clone for CarrierCrewServicesEventOperation
Source§fn clone(&self) -> CarrierCrewServicesEventOperation
fn clone(&self) -> CarrierCrewServicesEventOperation
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 moreSource§impl<'de> Deserialize<'de> for CarrierCrewServicesEventOperation
impl<'de> Deserialize<'de> for CarrierCrewServicesEventOperation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CarrierCrewServicesEventOperation
impl PartialEq for CarrierCrewServicesEventOperation
Source§fn eq(&self, other: &CarrierCrewServicesEventOperation) -> bool
fn eq(&self, other: &CarrierCrewServicesEventOperation) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CarrierCrewServicesEventOperation
Auto Trait Implementations§
impl Freeze for CarrierCrewServicesEventOperation
impl RefUnwindSafe for CarrierCrewServicesEventOperation
impl Send for CarrierCrewServicesEventOperation
impl Sync for CarrierCrewServicesEventOperation
impl Unpin for CarrierCrewServicesEventOperation
impl UnwindSafe for CarrierCrewServicesEventOperation
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