pub enum ByteStreamWriteError<E> {
Source(E),
SourceCleanup {
source: E,
cleanup: FileError,
},
Local(FileError),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<E> Freeze for ByteStreamWriteError<E>where
E: Freeze,
impl<E> !RefUnwindSafe for ByteStreamWriteError<E>
impl<E> Send for ByteStreamWriteError<E>where
E: Send,
impl<E> Sync for ByteStreamWriteError<E>where
E: Sync,
impl<E> Unpin for ByteStreamWriteError<E>where
E: Unpin,
impl<E> UnsafeUnpin for ByteStreamWriteError<E>where
E: UnsafeUnpin,
impl<E> !UnwindSafe for ByteStreamWriteError<E>
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