pub struct QueryGlobalStateResult(/* private fields */);
Trait Implementations§
source§impl Clone for QueryGlobalStateResult
impl Clone for QueryGlobalStateResult
source§fn clone(&self) -> QueryGlobalStateResult
fn clone(&self) -> QueryGlobalStateResult
Returns a copy 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 Debug for QueryGlobalStateResult
impl Debug for QueryGlobalStateResult
source§impl<'de> Deserialize<'de> for QueryGlobalStateResult
impl<'de> Deserialize<'de> for QueryGlobalStateResult
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<QueryGlobalStateResult> for JsValue
impl From<QueryGlobalStateResult> for JsValue
source§fn from(value: QueryGlobalStateResult) -> Self
fn from(value: QueryGlobalStateResult) -> Self
Converts to this type from the input type.
source§impl From<QueryGlobalStateResult> for QueryGlobalStateResult
impl From<QueryGlobalStateResult> for QueryGlobalStateResult
source§fn from(result: QueryGlobalStateResult) -> Self
fn from(result: QueryGlobalStateResult) -> Self
Converts to this type from the input type.
source§impl From<QueryGlobalStateResult> for QueryGlobalStateResult
impl From<QueryGlobalStateResult> for QueryGlobalStateResult
source§fn from(result: _QueryGlobalStateResult) -> Self
fn from(result: _QueryGlobalStateResult) -> Self
Converts to this type from the input type.
source§impl FromWasmAbi for QueryGlobalStateResult
impl FromWasmAbi for QueryGlobalStateResult
source§impl IntoWasmAbi for QueryGlobalStateResult
impl IntoWasmAbi for QueryGlobalStateResult
source§impl RefFromWasmAbi for QueryGlobalStateResult
impl RefFromWasmAbi for QueryGlobalStateResult
§type Anchor = RcRef<QueryGlobalStateResult>
type Anchor = RcRef<QueryGlobalStateResult>
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 Serialize for QueryGlobalStateResult
impl Serialize for QueryGlobalStateResult
source§impl VectorFromWasmAbi for QueryGlobalStateResult
impl VectorFromWasmAbi for QueryGlobalStateResult
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[QueryGlobalStateResult]>
source§impl VectorIntoJsValue for QueryGlobalStateResult
impl VectorIntoJsValue for QueryGlobalStateResult
fn vector_into_jsvalue(vector: Box<[QueryGlobalStateResult]>) -> JsValue
source§impl VectorIntoWasmAbi for QueryGlobalStateResult
impl VectorIntoWasmAbi for QueryGlobalStateResult
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[QueryGlobalStateResult]>) -> Self::Abi
source§impl WasmDescribeVector for QueryGlobalStateResult
impl WasmDescribeVector for QueryGlobalStateResult
Auto Trait Implementations§
impl !Freeze for QueryGlobalStateResult
impl RefUnwindSafe for QueryGlobalStateResult
impl Send for QueryGlobalStateResult
impl Sync for QueryGlobalStateResult
impl Unpin for QueryGlobalStateResult
impl UnwindSafe for QueryGlobalStateResult
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§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 moresource§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
source§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
.