pub enum TextFileOutputError<'file_handling> {
CannotCreate(Error),
CannotWrite(Error),
CannotFlush(Error),
AlreadyExists(&'file_handling str),
}
Variants§
Trait Implementations§
Source§impl<'file_handling> Debug for TextFileOutputError<'file_handling>
impl<'file_handling> Debug for TextFileOutputError<'file_handling>
Auto Trait Implementations§
impl<'file_handling> Freeze for TextFileOutputError<'file_handling>
impl<'file_handling> !RefUnwindSafe for TextFileOutputError<'file_handling>
impl<'file_handling> Send for TextFileOutputError<'file_handling>
impl<'file_handling> Sync for TextFileOutputError<'file_handling>
impl<'file_handling> Unpin for TextFileOutputError<'file_handling>
impl<'file_handling> !UnwindSafe for TextFileOutputError<'file_handling>
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