pub struct RoutingRequest { /* private fields */ }Expand description
Routing request
Implementations§
Trait Implementations§
Source§impl From<RoutingRequest> for JsValue
impl From<RoutingRequest> for JsValue
Source§fn from(value: RoutingRequest) -> Self
fn from(value: RoutingRequest) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for RoutingRequest
impl FromWasmAbi for RoutingRequest
Source§impl IntoWasmAbi for RoutingRequest
impl IntoWasmAbi for RoutingRequest
Source§impl LongRefFromWasmAbi for RoutingRequest
impl LongRefFromWasmAbi for RoutingRequest
Source§impl OptionFromWasmAbi for RoutingRequest
impl OptionFromWasmAbi for RoutingRequest
Source§impl OptionIntoWasmAbi for RoutingRequest
impl OptionIntoWasmAbi for RoutingRequest
Source§impl RefFromWasmAbi for RoutingRequest
impl RefFromWasmAbi for RoutingRequest
Source§type Anchor = RcRef<RoutingRequest>
type Anchor = RcRef<RoutingRequest>
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 RoutingRequest
impl RefMutFromWasmAbi for RoutingRequest
Source§impl TryFrom<RoutingRequest> for RoutingRequest
impl TryFrom<RoutingRequest> for RoutingRequest
Source§impl TryFromJsValue for RoutingRequest
impl TryFromJsValue for RoutingRequest
Source§impl VectorFromWasmAbi for RoutingRequest
impl VectorFromWasmAbi for RoutingRequest
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[RoutingRequest]>
Source§impl VectorIntoWasmAbi for RoutingRequest
impl VectorIntoWasmAbi for RoutingRequest
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[RoutingRequest]>) -> Self::Abi
Source§impl WasmDescribeVector for RoutingRequest
impl WasmDescribeVector for RoutingRequest
impl SupportsConstructor for RoutingRequest
impl SupportsInstanceProperty for RoutingRequest
impl SupportsStaticProperty for RoutingRequest
Auto Trait Implementations§
impl Freeze for RoutingRequest
impl RefUnwindSafe for RoutingRequest
impl Send for RoutingRequest
impl Sync for RoutingRequest
impl Unpin for RoutingRequest
impl UnwindSafe for RoutingRequest
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> 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.