pub struct RevokeDelegationForEndUserBody {
pub wallet_secret_id: Option<RevokeDelegationForEndUserBodyWalletSecretId>,
}Expand description
RevokeDelegationForEndUserBody
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<RevokeDelegationForEndUserBodyWalletSecretId>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 RevokeDelegationForEndUserBody
impl Clone for RevokeDelegationForEndUserBody
Source§fn clone(&self) -> RevokeDelegationForEndUserBody
fn clone(&self) -> RevokeDelegationForEndUserBody
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<'de> Deserialize<'de> for RevokeDelegationForEndUserBody
impl<'de> Deserialize<'de> for RevokeDelegationForEndUserBody
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<&RevokeDelegationForEndUserBody> for RevokeDelegationForEndUserBody
impl From<&RevokeDelegationForEndUserBody> for RevokeDelegationForEndUserBody
Source§fn from(value: &RevokeDelegationForEndUserBody) -> Self
fn from(value: &RevokeDelegationForEndUserBody) -> Self
Converts to this type from the input type.
Source§impl From<RevokeDelegationForEndUserBody> for RevokeDelegationForEndUserBody
impl From<RevokeDelegationForEndUserBody> for RevokeDelegationForEndUserBody
Source§fn from(value: RevokeDelegationForEndUserBody) -> Self
fn from(value: RevokeDelegationForEndUserBody) -> Self
Converts to this type from the input type.
Source§impl TryFrom<RevokeDelegationForEndUserBody> for RevokeDelegationForEndUserBody
impl TryFrom<RevokeDelegationForEndUserBody> for RevokeDelegationForEndUserBody
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: RevokeDelegationForEndUserBody,
) -> Result<Self, ConversionError>
fn try_from( value: RevokeDelegationForEndUserBody, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for RevokeDelegationForEndUserBody
impl RefUnwindSafe for RevokeDelegationForEndUserBody
impl Send for RevokeDelegationForEndUserBody
impl Sync for RevokeDelegationForEndUserBody
impl Unpin for RevokeDelegationForEndUserBody
impl UnsafeUnpin for RevokeDelegationForEndUserBody
impl UnwindSafe for RevokeDelegationForEndUserBody
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