#[repr(u32)]pub enum VmgsError {
Show 15 variants
Ok = 0,
NullParam = 1,
CantOpenFile = 2,
CantReadFile = 3,
FileDisk = 4,
InvalidBufSize = 5,
InvalidFileID = 6,
InvalidFileSize = 7,
InvalidString = 8,
InvalidVmgs = 9,
FileInfoAllocated = 10,
DecryptionFailed = 11,
EncryptionFailed = 12,
WriteFailed = 13,
FileExists = 14,
}
Variants§
Ok = 0
NullParam = 1
CantOpenFile = 2
CantReadFile = 3
FileDisk = 4
InvalidBufSize = 5
InvalidFileID = 6
InvalidFileSize = 7
InvalidString = 8
InvalidVmgs = 9
FileInfoAllocated = 10
DecryptionFailed = 11
EncryptionFailed = 12
WriteFailed = 13
FileExists = 14
Auto Trait Implementations§
impl Freeze for VmgsError
impl RefUnwindSafe for VmgsError
impl Send for VmgsError
impl Sync for VmgsError
impl Unpin for VmgsError
impl UnwindSafe for VmgsError
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