Enum kernel::process_checker::CheckResult
source · pub enum CheckResult {
Accept,
Pass,
Reject,
}
Expand description
What a AppCredentialsChecker decided a particular application’s credential indicates about the runnability of an application binary.
Variants§
Accept
Accept the credential and run the binary.
Pass
Go to the next credential or in the case of the last one fall back to the default policy.
Reject
Reject the credential and do not run the binary.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for CheckResult
impl Send for CheckResult
impl Sync for CheckResult
impl Unpin for CheckResult
impl UnwindSafe for CheckResult
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