pub struct DirToCreate {
pub path: PathBuf,
pub permissions: Option<Permissions>,
}Expand description
Information needed to create a directory with specific permissions
Fields§
§path: PathBuf§permissions: Option<Permissions>Trait Implementations§
Source§impl Clone for DirToCreate
impl Clone for DirToCreate
Source§fn clone(&self) -> DirToCreate
fn clone(&self) -> DirToCreate
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 DirToCreate
impl RefUnwindSafe for DirToCreate
impl Send for DirToCreate
impl Sync for DirToCreate
impl Unpin for DirToCreate
impl UnwindSafe for DirToCreate
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