pub enum JavascriptCollectionError {
Index,
Limit,
}Expand description
Failure from a bounded collection method.
Variants§
Index
A sparse or explicit index is outside the collection.
Limit
The caller’s explicit work bound was exhausted.
Trait Implementations§
Source§impl Clone for JavascriptCollectionError
impl Clone for JavascriptCollectionError
Source§fn clone(&self) -> JavascriptCollectionError
fn clone(&self) -> JavascriptCollectionError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for JavascriptCollectionError
impl Debug for JavascriptCollectionError
impl Eq for JavascriptCollectionError
impl StructuralPartialEq for JavascriptCollectionError
Auto Trait Implementations§
impl Freeze for JavascriptCollectionError
impl RefUnwindSafe for JavascriptCollectionError
impl Send for JavascriptCollectionError
impl Sync for JavascriptCollectionError
impl Unpin for JavascriptCollectionError
impl UnsafeUnpin for JavascriptCollectionError
impl UnwindSafe for JavascriptCollectionError
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.