pub enum ValidationMode {
VALID,
INVALID,
ERROR,
}
Expand description
Whether a validated data structure is valid, invalid, or an error was encountered during processing.
Variants§
Trait Implementations§
Source§impl From<u32> for ValidationMode
impl From<u32> for ValidationMode
Source§fn from(mode: kernel_ValidationMode) -> Self
fn from(mode: kernel_ValidationMode) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ValidationMode
impl RefUnwindSafe for ValidationMode
impl Send for ValidationMode
impl Sync for ValidationMode
impl Unpin for ValidationMode
impl UnwindSafe for ValidationMode
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