pub struct PathCheckResult {
pub allowed: bool,
pub decision_reason: Option<String>,
}Expand description
Path check result
Fields§
§allowed: bool§decision_reason: Option<String>Trait Implementations§
Source§impl Clone for PathCheckResult
impl Clone for PathCheckResult
Source§fn clone(&self) -> PathCheckResult
fn clone(&self) -> PathCheckResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto 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