pub enum FileOutcome {
Split {
files: Vec<PathBuf>,
},
Skipped(String),
RolledBack(String),
}Expand description
Outcome of attempting to split one file.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileOutcome
impl RefUnwindSafe for FileOutcome
impl Send for FileOutcome
impl Sync for FileOutcome
impl Unpin for FileOutcome
impl UnsafeUnpin for FileOutcome
impl UnwindSafe for FileOutcome
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