pub enum RegistrationState {
IDLE,
REQUESTING,
REGISTERED(String, Instant),
RELEASED,
}
Variants§
Auto Trait Implementations§
impl Freeze for RegistrationState
impl RefUnwindSafe for RegistrationState
impl Send for RegistrationState
impl Sync for RegistrationState
impl Unpin for RegistrationState
impl UnwindSafe for RegistrationState
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