pub struct PreflightInput {
pub shm_dir: PathBuf,
pub strict: bool,
}Expand description
Inputs to the preflight checker.
Fields§
§shm_dir: PathBufSHM/mmap directory to validate (existence + writability).
strict: boolIf true, treat findings as errors where possible.
Trait Implementations§
Source§impl Clone for PreflightInput
impl Clone for PreflightInput
Source§fn clone(&self) -> PreflightInput
fn clone(&self) -> PreflightInput
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 PreflightInput
impl RefUnwindSafe for PreflightInput
impl Send for PreflightInput
impl Sync for PreflightInput
impl Unpin for PreflightInput
impl UnwindSafe for PreflightInput
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