pub enum CopyOpt {
From {
stage: String,
},
Chown {
user: String,
group: Option<String>,
},
Chmod {
perms: String,
},
Link,
Parents,
Exclude {
path: String,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CopyOpt
impl RefUnwindSafe for CopyOpt
impl Send for CopyOpt
impl Sync for CopyOpt
impl Unpin for CopyOpt
impl UnwindSafe for CopyOpt
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