pub struct SignedRequestResponse { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SignedRequestResponse
impl<'de> Deserialize<'de> for SignedRequestResponse
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<SignedRequestResponse> for JsValue
impl From<SignedRequestResponse> for JsValue
Source§fn from(value: SignedRequestResponse) -> Self
fn from(value: SignedRequestResponse) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for SignedRequestResponse
impl FromWasmAbi for SignedRequestResponse
Source§impl IntoWasmAbi for SignedRequestResponse
impl IntoWasmAbi for SignedRequestResponse
Source§impl RefFromWasmAbi for SignedRequestResponse
impl RefFromWasmAbi for SignedRequestResponse
Source§type Anchor = Ref<'static, SignedRequestResponse>
type Anchor = Ref<'static, SignedRequestResponse>
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 SignedRequestResponse
impl Serialize for SignedRequestResponse
Auto Trait Implementations§
impl Freeze for SignedRequestResponse
impl RefUnwindSafe for SignedRequestResponse
impl Send for SignedRequestResponse
impl Sync for SignedRequestResponse
impl Unpin for SignedRequestResponse
impl UnwindSafe for SignedRequestResponse
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> 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,
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.