#[repr(C)]pub enum IoErrorCode {
NotFound = 0,
PermissionDenied = 1,
AlreadyExists = 2,
InvalidInput = 3,
UnexpectedEof = 4,
Other = 5,
}Expand description
I/O error codes
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IoErrorCode
impl RefUnwindSafe for IoErrorCode
impl Send for IoErrorCode
impl Sync for IoErrorCode
impl Unpin for IoErrorCode
impl UnsafeUnpin for IoErrorCode
impl UnwindSafe for IoErrorCode
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