pub struct WasmGraphqlClient { /* private fields */ }Expand description
GraphQL client for WASM/JavaScript usage.
Implementations§
Trait Implementations§
Source§impl From<WasmGraphqlClient> for JsValue
impl From<WasmGraphqlClient> for JsValue
Source§fn from(value: WasmGraphqlClient) -> Self
fn from(value: WasmGraphqlClient) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for WasmGraphqlClient
impl FromWasmAbi for WasmGraphqlClient
Source§impl IntoWasmAbi for WasmGraphqlClient
impl IntoWasmAbi for WasmGraphqlClient
Source§impl RefFromWasmAbi for WasmGraphqlClient
impl RefFromWasmAbi for WasmGraphqlClient
Source§type Anchor = RcRef<WasmGraphqlClient>
type Anchor = RcRef<WasmGraphqlClient>
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 TryFromJsValue for WasmGraphqlClient
impl TryFromJsValue for WasmGraphqlClient
Source§impl VectorFromWasmAbi for WasmGraphqlClient
impl VectorFromWasmAbi for WasmGraphqlClient
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[WasmGraphqlClient]>
Source§impl VectorIntoWasmAbi for WasmGraphqlClient
impl VectorIntoWasmAbi for WasmGraphqlClient
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[WasmGraphqlClient]>) -> Self::Abi
Source§impl WasmDescribeVector for WasmGraphqlClient
impl WasmDescribeVector for WasmGraphqlClient
impl SupportsConstructor for WasmGraphqlClient
impl SupportsInstanceProperty for WasmGraphqlClient
impl SupportsStaticProperty for WasmGraphqlClient
Auto Trait Implementations§
impl Freeze for WasmGraphqlClient
impl !RefUnwindSafe for WasmGraphqlClient
impl Send for WasmGraphqlClient
impl Sync for WasmGraphqlClient
impl Unpin for WasmGraphqlClient
impl UnsafeUnpin for WasmGraphqlClient
impl !UnwindSafe for WasmGraphqlClient
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
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.