pub struct PathCheckResult {
pub allowed: bool,
pub decision_reason: Option<PermissionDecisionReason>,
}Expand description
Result of a path check.
Fields§
§allowed: bool§decision_reason: Option<PermissionDecisionReason>Auto Trait Implementations§
impl Freeze for PathCheckResult
impl RefUnwindSafe for PathCheckResult
impl Send for PathCheckResult
impl Sync for PathCheckResult
impl Unpin for PathCheckResult
impl UnsafeUnpin for PathCheckResult
impl UnwindSafe for PathCheckResult
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