pub enum RnxAuthorization {
DenyAll,
AllowList(&'static [IdentityHash]),
Public,
}Variants§
Trait Implementations§
Source§impl Clone for RnxAuthorization
impl Clone for RnxAuthorization
Source§fn clone(&self) -> RnxAuthorization
fn clone(&self) -> RnxAuthorization
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 RnxAuthorization
Source§impl Debug for RnxAuthorization
impl Debug for RnxAuthorization
impl Eq for RnxAuthorization
Source§impl PartialEq for RnxAuthorization
impl PartialEq for RnxAuthorization
impl StructuralPartialEq for RnxAuthorization
Auto Trait Implementations§
impl Freeze for RnxAuthorization
impl RefUnwindSafe for RnxAuthorization
impl Send for RnxAuthorization
impl Sync for RnxAuthorization
impl Unpin for RnxAuthorization
impl UnsafeUnpin for RnxAuthorization
impl UnwindSafe for RnxAuthorization
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