pub enum PathSafetyResult {
Safe,
Unsafe {
message: String,
classifier_approvable: bool,
},
}Expand description
Result of a path safety check.
Variants§
Auto Trait Implementations§
impl Freeze for PathSafetyResult
impl RefUnwindSafe for PathSafetyResult
impl Send for PathSafetyResult
impl Sync for PathSafetyResult
impl Unpin for PathSafetyResult
impl UnsafeUnpin for PathSafetyResult
impl UnwindSafe for PathSafetyResult
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