pub enum ConversionResult<T> {
Success(T),
Failure(Cow<'static, str>),
}
Expand description
An enum to better support enums through FromJSValConvertible::from_jsval.
Variants§
Success(T)
Everything went fine.
Failure(Cow<'static, str>)
Conversion failed, without a pending exception.
Implementations§
Source§impl<T> ConversionResult<T>
impl<T> ConversionResult<T>
Sourcepub fn get_success_value(&self) -> Option<&T>
pub fn get_success_value(&self) -> Option<&T>
Returns Some(value) if it is ConversionResult::Success
.
Trait Implementations§
Source§impl<T: Clone> Clone for ConversionResult<T>
impl<T: Clone> Clone for ConversionResult<T>
Source§fn clone(&self) -> ConversionResult<T>
fn clone(&self) -> ConversionResult<T>
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<T: Debug> Debug for ConversionResult<T>
impl<T: Debug> Debug for ConversionResult<T>
Source§impl<T: PartialEq> PartialEq for ConversionResult<T>
impl<T: PartialEq> PartialEq for ConversionResult<T>
impl<T: Eq> Eq for ConversionResult<T>
impl<T> StructuralPartialEq for ConversionResult<T>
Auto Trait Implementations§
impl<T> Freeze for ConversionResult<T>where
T: Freeze,
impl<T> RefUnwindSafe for ConversionResult<T>where
T: RefUnwindSafe,
impl<T> Send for ConversionResult<T>where
T: Send,
impl<T> Sync for ConversionResult<T>where
T: Sync,
impl<T> Unpin for ConversionResult<T>where
T: Unpin,
impl<T> UnwindSafe for ConversionResult<T>where
T: 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