#[repr(C)]pub enum KjStatus {
Ok = 0,
InvalidArgument = 1,
InvalidHandle = 2,
BufferTooSmall = 3,
CompileError = 4,
RuntimeError = 5,
InternalError = 6,
}Variants§
Ok = 0
InvalidArgument = 1
InvalidHandle = 2
BufferTooSmall = 3
CompileError = 4
RuntimeError = 5
InternalError = 6
Trait Implementations§
impl Copy for KjStatus
impl Eq for KjStatus
impl StructuralPartialEq for KjStatus
Auto Trait Implementations§
impl Freeze for KjStatus
impl RefUnwindSafe for KjStatus
impl Send for KjStatus
impl Sync for KjStatus
impl Unpin for KjStatus
impl UnsafeUnpin for KjStatus
impl UnwindSafe for KjStatus
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