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<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<&WalletRevokeResponse> for WalletRevokeResponse
impl From<&WalletRevokeResponse> for WalletRevokeResponse
Source§fn from(value: &WalletRevokeResponse) -> Self
fn from(value: &WalletRevokeResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WalletRevokeResponse
impl RefUnwindSafe for WalletRevokeResponse
impl Send for WalletRevokeResponse
impl Sync for WalletRevokeResponse
impl Unpin for WalletRevokeResponse
impl UnsafeUnpin 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