pub struct ResolvedPathCheckResult {
pub allowed: bool,
pub decision_reason: Option<String>,
pub resolved_path: String,
}Expand description
Resolved path check result
Fields§
§allowed: bool§decision_reason: Option<String>§resolved_path: StringTrait Implementations§
Source§impl Clone for ResolvedPathCheckResult
impl Clone for ResolvedPathCheckResult
Source§fn clone(&self) -> ResolvedPathCheckResult
fn clone(&self) -> ResolvedPathCheckResult
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 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