pub struct WalletRevokeResponse {
pub message: String,
}Expand description
The response body from revoking a wallet delegation.
JSON schema
{
"title": "WalletRevokeResponse",
"description": "The response body from revoking a wallet delegation.",
"type": "object",
"required": [
"message"
],
"properties": {
"message": {
"type": "string"
}
}
}Fields§
§message: StringTrait Implementations§
Source§impl Clone for WalletRevokeResponse
impl Clone for WalletRevokeResponse
Source§fn clone(&self) -> WalletRevokeResponse
fn clone(&self) -> WalletRevokeResponse
Returns a duplicate 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 WalletRevokeResponse
impl Debug for WalletRevokeResponse
Source§impl<'de> Deserialize<'de> for WalletRevokeResponse
impl<'de> Deserialize<'de> for WalletRevokeResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<WalletRevokeResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<WalletRevokeResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&WalletRevokeResponse> for WalletRevokeResponse
impl From<&WalletRevokeResponse> for WalletRevokeResponse
Source§fn from(value: &WalletRevokeResponse) -> WalletRevokeResponse
fn from(value: &WalletRevokeResponse) -> WalletRevokeResponse
Converts to this type from the input type.
Source§impl Serialize for WalletRevokeResponse
impl Serialize for WalletRevokeResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for WalletRevokeResponse
impl RefUnwindSafe for WalletRevokeResponse
impl Send for WalletRevokeResponse
impl Sync for WalletRevokeResponse
impl Unpin for WalletRevokeResponse
impl UnwindSafe for WalletRevokeResponse
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