pub enum AuthorizationDecision {
Allowed,
Denied,
Continue,
}Expand description
The decision made by a SecFetchAuthorizer
Variants§
Allowed
The request can be passed to the server Short-circuits the evaluation policy
Denied
The request is denied Short-circuits the evaluation policy
Continue
The request is neither denied nor allowed, deferring to the evaluation policy
Auto Trait Implementations§
impl Freeze for AuthorizationDecision
impl RefUnwindSafe for AuthorizationDecision
impl Send for AuthorizationDecision
impl Sync for AuthorizationDecision
impl Unpin for AuthorizationDecision
impl UnwindSafe for AuthorizationDecision
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