pub enum SupportAdmissionMethod {
OperatorAdmitted,
TestFixtureAdmitted,
ExternalReceiptAdmitted,
}Expand description
Method by which a support admission was made.
Variants§
OperatorAdmitted
Operator explicitly admitted the support state.
TestFixtureAdmitted
Admitted via a test fixture.
ExternalReceiptAdmitted
Admitted via an external receipt.
Trait Implementations§
Source§impl Clone for SupportAdmissionMethod
impl Clone for SupportAdmissionMethod
Source§fn clone(&self) -> SupportAdmissionMethod
fn clone(&self) -> SupportAdmissionMethod
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 moreimpl Copy for SupportAdmissionMethod
Source§impl Debug for SupportAdmissionMethod
impl Debug for SupportAdmissionMethod
Source§impl<'de> Deserialize<'de> for SupportAdmissionMethod
impl<'de> Deserialize<'de> for SupportAdmissionMethod
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
impl Eq for SupportAdmissionMethod
Source§impl PartialEq for SupportAdmissionMethod
impl PartialEq for SupportAdmissionMethod
Source§impl Serialize for SupportAdmissionMethod
impl Serialize for SupportAdmissionMethod
impl StructuralPartialEq for SupportAdmissionMethod
Auto Trait Implementations§
impl Freeze for SupportAdmissionMethod
impl RefUnwindSafe for SupportAdmissionMethod
impl Send for SupportAdmissionMethod
impl Sync for SupportAdmissionMethod
impl Unpin for SupportAdmissionMethod
impl UnsafeUnpin for SupportAdmissionMethod
impl UnwindSafe for SupportAdmissionMethod
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