pub enum BinaryErrorType {
FileExists,
DataError,
FileError,
}Expand description
Types of binary creation errors
Variants§
FileExists
The desired filename exists already
DataError
Error writing data to the binary
FileError
Error writing the binary to a file
Trait Implementations§
Source§impl Clone for BinaryErrorType
impl Clone for BinaryErrorType
Source§fn clone(&self) -> BinaryErrorType
fn clone(&self) -> BinaryErrorType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BinaryErrorType
impl Debug for BinaryErrorType
Auto Trait Implementations§
impl Freeze for BinaryErrorType
impl RefUnwindSafe for BinaryErrorType
impl Send for BinaryErrorType
impl Sync for BinaryErrorType
impl Unpin for BinaryErrorType
impl UnwindSafe for BinaryErrorType
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