pub enum EnrollmentState {
Active,
Invited,
Rejected,
Completed,
Inactive,
InvitedOrPending,
}
Variants§
Trait Implementations§
Source§impl From<EnrollmentState> for RequestParameter
impl From<EnrollmentState> for RequestParameter
Source§fn from(value: EnrollmentState) -> Self
fn from(value: EnrollmentState) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EnrollmentState
impl RefUnwindSafe for EnrollmentState
impl Send for EnrollmentState
impl Sync for EnrollmentState
impl Unpin for EnrollmentState
impl UnwindSafe for EnrollmentState
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