#[repr(i32)]pub enum PROSErr {
Show 14 variants
None = 0,
NoEntry = 2,
IO = 5,
NXIO = 6,
Again = 11,
Access = 13,
Busy = 16,
Exists = 17,
NoDev = 19,
Invalid = 22,
ReadOnlyFS = 30,
NoMoreFiles = 89,
NoBuffSpace = 105,
AddrInUse = 112,
}
Expand description
Possible PROS Errors
Variants§
None = 0
No errors
NoEntry = 2
No such file or directory
IO = 5
I/O error
NXIO = 6
No such device or address
Again = 11
No more processes
Access = 13
Permission denied
Busy = 16
Mount device busy
Exists = 17
File exists
NoDev = 19
No such device
Invalid = 22
Invalid argument
ReadOnlyFS = 30
Read-only file system
NoMoreFiles = 89
No more files
NoBuffSpace = 105
No buffer space available
AddrInUse = 112
Address already in use or not configured correctly
Trait Implementations§
impl Copy for PROSErr
impl Eq for PROSErr
impl StructuralPartialEq for PROSErr
Auto Trait Implementations§
impl Freeze for PROSErr
impl RefUnwindSafe for PROSErr
impl Send for PROSErr
impl Sync for PROSErr
impl Unpin for PROSErr
impl UnwindSafe for PROSErr
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