#[repr(i32)]pub enum Status {
Show 24 variants
Ok = 0,
InvalidArg = 1,
ObjectExpected = 2,
StringExpected = 3,
NameExpected = 4,
FunctionExpected = 5,
NumberExpected = 6,
BooleanExpected = 7,
ArrayExpected = 8,
GenericFailure = 9,
PendingException = 10,
Cancelled = 11,
EscapeCalledTwice = 12,
HandleScopeMismatch = 13,
CallbackScopeMismatch = 14,
QueueFull = 15,
Closing = 16,
BigintExpected = 17,
DateExpected = 18,
ArrayBufferExpected = 19,
DetachableArraybufferExpected = 20,
WouldDeadlock = 21,
NoExternalBuffersAllowed = 22,
Unknown = 1_024,
}
Variants§
Ok = 0
InvalidArg = 1
ObjectExpected = 2
StringExpected = 3
NameExpected = 4
FunctionExpected = 5
NumberExpected = 6
BooleanExpected = 7
ArrayExpected = 8
GenericFailure = 9
PendingException = 10
Cancelled = 11
EscapeCalledTwice = 12
HandleScopeMismatch = 13
CallbackScopeMismatch = 14
QueueFull = 15
ThreadSafeFunction queue is full
Closing = 16
ThreadSafeFunction closed
BigintExpected = 17
DateExpected = 18
ArrayBufferExpected = 19
DetachableArraybufferExpected = 20
WouldDeadlock = 21
NoExternalBuffersAllowed = 22
Unknown = 1_024
Trait Implementations§
impl Copy for Status
impl Eq for Status
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.