#[repr(C)]pub enum AetherErrorCode {
Success = 0,
ParseError = 1,
RuntimeError = 2,
NullPointer = 3,
Panic = 4,
InvalidJSON = 5,
VariableNotFound = 6,
}Expand description
Error codes returned by C-FFI functions
Variants§
Success = 0
ParseError = 1
RuntimeError = 2
NullPointer = 3
Panic = 4
InvalidJSON = 5
VariableNotFound = 6
Auto Trait Implementations§
impl Freeze for AetherErrorCode
impl RefUnwindSafe for AetherErrorCode
impl Send for AetherErrorCode
impl Sync for AetherErrorCode
impl Unpin for AetherErrorCode
impl UnwindSafe for AetherErrorCode
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