pub enum EnrollmentDecisionStatus {
Active,
Pending,
Rejected,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for EnrollmentDecisionStatus
impl Clone for EnrollmentDecisionStatus
Source§fn clone(&self) -> EnrollmentDecisionStatus
fn clone(&self) -> EnrollmentDecisionStatus
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 EnrollmentDecisionStatus
Source§impl Debug for EnrollmentDecisionStatus
impl Debug for EnrollmentDecisionStatus
Source§impl<'de> Deserialize<'de> for EnrollmentDecisionStatus
impl<'de> Deserialize<'de> for EnrollmentDecisionStatus
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 EnrollmentDecisionStatus
Source§impl Hash for EnrollmentDecisionStatus
impl Hash for EnrollmentDecisionStatus
Source§impl PartialEq for EnrollmentDecisionStatus
impl PartialEq for EnrollmentDecisionStatus
Source§impl Serialize for EnrollmentDecisionStatus
impl Serialize for EnrollmentDecisionStatus
impl StructuralPartialEq for EnrollmentDecisionStatus
Auto Trait Implementations§
impl Freeze for EnrollmentDecisionStatus
impl RefUnwindSafe for EnrollmentDecisionStatus
impl Send for EnrollmentDecisionStatus
impl Sync for EnrollmentDecisionStatus
impl Unpin for EnrollmentDecisionStatus
impl UnsafeUnpin for EnrollmentDecisionStatus
impl UnwindSafe for EnrollmentDecisionStatus
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