pub enum Authorized<P, R> {
Party(P),
Registration(R),
}Variants§
Implementations§
Source§impl<P, R> Authorized<P, R>where
P: Party,
impl<P, R> Authorized<P, R>where
P: Party,
Auto Trait Implementations§
impl<P, R> Freeze for Authorized<P, R>
impl<P, R> RefUnwindSafe for Authorized<P, R>where
P: RefUnwindSafe,
R: RefUnwindSafe,
impl<P, R> Send for Authorized<P, R>
impl<P, R> Sync for Authorized<P, R>
impl<P, R> Unpin for Authorized<P, R>
impl<P, R> UnwindSafe for Authorized<P, R>where
P: UnwindSafe,
R: UnwindSafe,
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