#[repr(u16)]pub enum FoEErrorCode {
NotDefined = 32_768,
NotFound = 32_769,
AccessDenied = 32_770,
DiskFull = 32_771,
Illegal = 32_772,
PacketNumberWrong = 32_773,
AlreadyExists = 32_774,
NoUser = 32_775,
BootstrapOnly = 32_776,
NotBootstrap = 32_777,
NoRights = 32_778,
ProgramError = 32_779,
}Variants§
NotDefined = 32_768
NotFound = 32_769
AccessDenied = 32_770
DiskFull = 32_771
Illegal = 32_772
PacketNumberWrong = 32_773
AlreadyExists = 32_774
NoUser = 32_775
BootstrapOnly = 32_776
NotBootstrap = 32_777
NoRights = 32_778
ProgramError = 32_779
Implementations§
Source§impl FoEErrorCode
impl FoEErrorCode
pub fn from_dll_error(dll_error_code: i32) -> Self
Trait Implementations§
Source§impl Clone for FoEErrorCode
impl Clone for FoEErrorCode
Source§fn clone(&self) -> FoEErrorCode
fn clone(&self) -> FoEErrorCode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FoEErrorCode
Source§impl Debug for FoEErrorCode
impl Debug for FoEErrorCode
impl Eq for FoEErrorCode
Source§impl PartialEq for FoEErrorCode
impl PartialEq for FoEErrorCode
Source§fn eq(&self, other: &FoEErrorCode) -> bool
fn eq(&self, other: &FoEErrorCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FoEErrorCode
Auto Trait Implementations§
impl Freeze for FoEErrorCode
impl RefUnwindSafe for FoEErrorCode
impl Send for FoEErrorCode
impl Sync for FoEErrorCode
impl Unpin for FoEErrorCode
impl UnsafeUnpin for FoEErrorCode
impl UnwindSafe for FoEErrorCode
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