pub struct RevokeDelegationForEndUserAccountBody {
pub wallet_secret_id: Option<RevokeDelegationForEndUserAccountBodyWalletSecretId>,
}Expand description
RevokeDelegationForEndUserAccountBody
JSON schema
{
"type": "object",
"properties": {
"walletSecretId": {
"description": "When revoking with a wallet authentication scheme, the ID of the Temporary Wallet Secret that was used to sign the X-Wallet-Auth Header.",
"examples": [
"e051beeb-7163-4527-a5b6-35e301529ff2"
],
"type": "string",
"pattern": "^[a-zA-Z0-9-]{1,100}$"
}
}
}Fields§
§wallet_secret_id: Option<RevokeDelegationForEndUserAccountBodyWalletSecretId>When revoking with a wallet authentication scheme, the ID of the Temporary Wallet Secret that was used to sign the X-Wallet-Auth Header.
Implementations§
Trait Implementations§
Source§impl Clone for RevokeDelegationForEndUserAccountBody
impl Clone for RevokeDelegationForEndUserAccountBody
Source§fn clone(&self) -> RevokeDelegationForEndUserAccountBody
fn clone(&self) -> RevokeDelegationForEndUserAccountBody
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for RevokeDelegationForEndUserAccountBody
impl<'de> Deserialize<'de> for RevokeDelegationForEndUserAccountBody
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<&RevokeDelegationForEndUserAccountBody> for RevokeDelegationForEndUserAccountBody
impl From<&RevokeDelegationForEndUserAccountBody> for RevokeDelegationForEndUserAccountBody
Source§fn from(value: &RevokeDelegationForEndUserAccountBody) -> Self
fn from(value: &RevokeDelegationForEndUserAccountBody) -> Self
Converts to this type from the input type.
Source§impl From<RevokeDelegationForEndUserAccountBody> for RevokeDelegationForEndUserAccountBody
impl From<RevokeDelegationForEndUserAccountBody> for RevokeDelegationForEndUserAccountBody
Source§fn from(value: RevokeDelegationForEndUserAccountBody) -> Self
fn from(value: RevokeDelegationForEndUserAccountBody) -> Self
Converts to this type from the input type.
Source§impl TryFrom<RevokeDelegationForEndUserAccountBody> for RevokeDelegationForEndUserAccountBody
impl TryFrom<RevokeDelegationForEndUserAccountBody> for RevokeDelegationForEndUserAccountBody
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: RevokeDelegationForEndUserAccountBody,
) -> Result<Self, ConversionError>
fn try_from( value: RevokeDelegationForEndUserAccountBody, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for RevokeDelegationForEndUserAccountBody
impl RefUnwindSafe for RevokeDelegationForEndUserAccountBody
impl Send for RevokeDelegationForEndUserAccountBody
impl Sync for RevokeDelegationForEndUserAccountBody
impl Unpin for RevokeDelegationForEndUserAccountBody
impl UnsafeUnpin for RevokeDelegationForEndUserAccountBody
impl UnwindSafe for RevokeDelegationForEndUserAccountBody
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