pub struct DiskFileParams {
pub path: PathBuf,
pub is_read_only: bool,
pub is_sparse_file: bool,
pub is_overlapped: bool,
pub is_direct: bool,
pub lock: bool,
pub depth: u32,
}Fields§
§path: PathBuf§is_read_only: bool§is_sparse_file: bool§is_overlapped: bool§is_direct: bool§lock: bool§depth: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for DiskFileParams
impl RefUnwindSafe for DiskFileParams
impl Send for DiskFileParams
impl Sync for DiskFileParams
impl Unpin for DiskFileParams
impl UnwindSafe for DiskFileParams
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