pub enum BioError {
Uninit,
None,
InvalidCore,
Oom,
NoFreeMachines,
ResourceInUse,
CodeCheck(usize),
InternalError,
}Variants§
Uninit
Uninitialized
None
No error
InvalidCore
specified core is not valid
Oom
program can’t fit in memory, for one reason or another
NoFreeMachines
no more machines available
ResourceInUse
resource is already in use
CodeCheck(usize)
Loaded code did not match, first error at argument
InternalError
Catch-all for programming bugs that shouldn’t happen
Trait Implementations§
impl Copy for BioError
Auto Trait Implementations§
impl Freeze for BioError
impl RefUnwindSafe for BioError
impl Send for BioError
impl Sync for BioError
impl Unpin for BioError
impl UnwindSafe for BioError
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