pub enum Authorization {
Allow,
Deny,
Ignore,
}Expand description
What an authorizer decided about one action.
Variants§
Allow
The action is allowed.
Deny
The action is refused and the statement fails.
Ignore
The action is allowed but the column reads as NULL.
Trait Implementations§
Source§impl Clone for Authorization
impl Clone for Authorization
impl Copy for Authorization
Source§impl Debug for Authorization
impl Debug for Authorization
impl Eq for Authorization
Source§impl PartialEq for Authorization
impl PartialEq for Authorization
impl StructuralPartialEq for Authorization
Auto Trait Implementations§
impl Freeze for Authorization
impl RefUnwindSafe for Authorization
impl Send for Authorization
impl Sync for Authorization
impl Unpin for Authorization
impl UnsafeUnpin for Authorization
impl UnwindSafe for Authorization
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