pub enum ForOfIterationFailure<OtherError> {
ValueIsNotIterable,
JSFailed,
Other(OtherError),
}Variants§
Trait Implementations§
Source§impl<OtherError: Clone> Clone for ForOfIterationFailure<OtherError>
impl<OtherError: Clone> Clone for ForOfIterationFailure<OtherError>
Source§fn clone(&self) -> ForOfIterationFailure<OtherError>
fn clone(&self) -> ForOfIterationFailure<OtherError>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<OtherError: Debug> Debug for ForOfIterationFailure<OtherError>
impl<OtherError: Debug> Debug for ForOfIterationFailure<OtherError>
Source§impl<OtherError> From<OtherError> for ForOfIterationFailure<OtherError>
impl<OtherError> From<OtherError> for ForOfIterationFailure<OtherError>
impl<OtherError: Copy> Copy for ForOfIterationFailure<OtherError>
Auto Trait Implementations§
impl<OtherError> Freeze for ForOfIterationFailure<OtherError>where
OtherError: Freeze,
impl<OtherError> RefUnwindSafe for ForOfIterationFailure<OtherError>where
OtherError: RefUnwindSafe,
impl<OtherError> Send for ForOfIterationFailure<OtherError>where
OtherError: Send,
impl<OtherError> Sync for ForOfIterationFailure<OtherError>where
OtherError: Sync,
impl<OtherError> Unpin for ForOfIterationFailure<OtherError>where
OtherError: Unpin,
impl<OtherError> UnsafeUnpin for ForOfIterationFailure<OtherError>where
OtherError: UnsafeUnpin,
impl<OtherError> UnwindSafe for ForOfIterationFailure<OtherError>where
OtherError: UnwindSafe,
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<T> Filterable for T
impl<T> Filterable for T
Source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
Creates a filterable data provider with the given name for debugging. Read more