pub enum AllowResult {
Allowed,
Denied(String),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AllowResult
impl Clone for AllowResult
Source§fn clone(&self) -> AllowResult
fn clone(&self) -> AllowResult
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 moreSource§impl Debug for AllowResult
impl Debug for AllowResult
Source§impl PartialEq for AllowResult
impl PartialEq for AllowResult
Source§fn eq(&self, other: &AllowResult) -> bool
fn eq(&self, other: &AllowResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AllowResult
impl StructuralPartialEq for AllowResult
Auto Trait Implementations§
impl Freeze for AllowResult
impl RefUnwindSafe for AllowResult
impl Send for AllowResult
impl Sync for AllowResult
impl Unpin for AllowResult
impl UnsafeUnpin for AllowResult
impl UnwindSafe for AllowResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.