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