pub struct BrowserRangeAbort { /* private fields */ }Expand description
Browser-visible cooperative cancellation backed by AbortController.
Implementations§
Trait Implementations§
Source§impl From<BrowserRangeAbort> for JsValue
impl From<BrowserRangeAbort> for JsValue
Source§fn from(value: BrowserRangeAbort) -> Self
fn from(value: BrowserRangeAbort) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for BrowserRangeAbort
impl FromWasmAbi for BrowserRangeAbort
Source§impl IntoWasmAbi for BrowserRangeAbort
impl IntoWasmAbi for BrowserRangeAbort
Source§impl LongRefFromWasmAbi for BrowserRangeAbort
impl LongRefFromWasmAbi for BrowserRangeAbort
Source§type Abi = WasmPtr<WasmRefCell<BrowserRangeAbort>>
type Abi = WasmPtr<WasmRefCell<BrowserRangeAbort>>
Same as
RefFromWasmAbi::AbiSource§type Anchor = RcRef<BrowserRangeAbort>
type Anchor = RcRef<BrowserRangeAbort>
Same as
RefFromWasmAbi::AnchorSource§unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor
unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor
Same as
RefFromWasmAbi::ref_from_abiSource§impl RefFromWasmAbi for BrowserRangeAbort
impl RefFromWasmAbi for BrowserRangeAbort
Source§type Abi = WasmPtr<WasmRefCell<BrowserRangeAbort>>
type Abi = WasmPtr<WasmRefCell<BrowserRangeAbort>>
The Wasm ABI type references to
Self are recovered from.Source§type Anchor = RcRef<BrowserRangeAbort>
type Anchor = RcRef<BrowserRangeAbort>
The type that holds the reference to
Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl RefMutFromWasmAbi for BrowserRangeAbort
impl RefMutFromWasmAbi for BrowserRangeAbort
Source§type Abi = WasmPtr<WasmRefCell<BrowserRangeAbort>>
type Abi = WasmPtr<WasmRefCell<BrowserRangeAbort>>
Same as
RefFromWasmAbi::AbiSource§type Anchor = RcRefMut<BrowserRangeAbort>
type Anchor = RcRefMut<BrowserRangeAbort>
Same as
RefFromWasmAbi::AnchorSource§unsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor
unsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor
Same as
RefFromWasmAbi::ref_from_abiSource§impl TryFromJsValue for BrowserRangeAbort
impl TryFromJsValue for BrowserRangeAbort
Source§impl VectorFromWasmAbi for BrowserRangeAbort
impl VectorFromWasmAbi for BrowserRangeAbort
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[BrowserRangeAbort]>
Source§impl VectorIntoWasmAbi for BrowserRangeAbort
impl VectorIntoWasmAbi for BrowserRangeAbort
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[BrowserRangeAbort]>) -> Self::Abi
Source§impl WasmDescribeVector for BrowserRangeAbort
impl WasmDescribeVector for BrowserRangeAbort
impl SupportsConstructor for BrowserRangeAbort
impl SupportsInstanceProperty for BrowserRangeAbort
impl SupportsStaticProperty for BrowserRangeAbort
Auto Trait Implementations§
impl Freeze for BrowserRangeAbort
impl RefUnwindSafe for BrowserRangeAbort
impl Send for BrowserRangeAbort
impl Sync for BrowserRangeAbort
impl Unpin for BrowserRangeAbort
impl UnsafeUnpin for BrowserRangeAbort
impl UnwindSafe for BrowserRangeAbort
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::AbiSource§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err.