pub enum RemovalAction {
Delete {
file_info: FileInfo,
file_size: Option<u64>,
},
RunCommand {
work_dir: FileInfo,
command: Arc<str>,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RemovalAction
impl RefUnwindSafe for RemovalAction
impl Send for RemovalAction
impl Sync for RemovalAction
impl Unpin for RemovalAction
impl UnwindSafe for RemovalAction
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