pub enum AuthorizerResult {
Ok,
Ignore,
Deny,
}Expand description
Return value for authorizer callbacks.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AuthorizerResult
impl Clone for AuthorizerResult
Source§fn clone(&self) -> AuthorizerResult
fn clone(&self) -> AuthorizerResult
Returns a duplicate of the value. Read more
1.0.0 · 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 AuthorizerResult
impl Debug for AuthorizerResult
Source§impl PartialEq for AuthorizerResult
impl PartialEq for AuthorizerResult
impl Copy for AuthorizerResult
impl Eq for AuthorizerResult
impl StructuralPartialEq for AuthorizerResult
Auto Trait Implementations§
impl Freeze for AuthorizerResult
impl RefUnwindSafe for AuthorizerResult
impl Send for AuthorizerResult
impl Sync for AuthorizerResult
impl Unpin for AuthorizerResult
impl UnsafeUnpin for AuthorizerResult
impl UnwindSafe for AuthorizerResult
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