pub enum DeletingState {
DeletingTemporaryFile(String),
ParseError(String),
}Expand description
Occurs when a temporary file is being deleted
Variants§
Implementations§
Source§impl DeletingState
impl DeletingState
pub fn parse<'a>( split: impl DoubleEndedIterator<Item = &'a str> + Send, ) -> DeletingState
Auto Trait Implementations§
impl Freeze for DeletingState
impl RefUnwindSafe for DeletingState
impl Send for DeletingState
impl Sync for DeletingState
impl Unpin for DeletingState
impl UnwindSafe for DeletingState
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