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