pub struct CreateDelegationForEndUserAccountResponse {
pub expires_at: DateTime<Utc>,
}Expand description
CreateDelegationForEndUserAccountResponse
JSON schema
{
"type": "object",
"required": [
"expiresAt"
],
"properties": {
"expiresAt": {
"description": "The date until which the delegation is valid.",
"examples": [
"2026-02-03T10:35:00Z"
],
"type": "string",
"format": "date-time"
}
}
}Fields§
§expires_at: DateTime<Utc>The date until which the delegation is valid.
Implementations§
Trait Implementations§
Source§impl Clone for CreateDelegationForEndUserAccountResponse
impl Clone for CreateDelegationForEndUserAccountResponse
Source§fn clone(&self) -> CreateDelegationForEndUserAccountResponse
fn clone(&self) -> CreateDelegationForEndUserAccountResponse
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 CreateDelegationForEndUserAccountResponse
impl<'de> Deserialize<'de> for CreateDelegationForEndUserAccountResponse
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<&CreateDelegationForEndUserAccountResponse> for CreateDelegationForEndUserAccountResponse
impl From<&CreateDelegationForEndUserAccountResponse> for CreateDelegationForEndUserAccountResponse
Source§fn from(value: &CreateDelegationForEndUserAccountResponse) -> Self
fn from(value: &CreateDelegationForEndUserAccountResponse) -> Self
Converts to this type from the input type.
Source§impl From<CreateDelegationForEndUserAccountResponse> for CreateDelegationForEndUserAccountResponse
impl From<CreateDelegationForEndUserAccountResponse> for CreateDelegationForEndUserAccountResponse
Source§fn from(value: CreateDelegationForEndUserAccountResponse) -> Self
fn from(value: CreateDelegationForEndUserAccountResponse) -> Self
Converts to this type from the input type.
Source§impl TryFrom<CreateDelegationForEndUserAccountResponse> for CreateDelegationForEndUserAccountResponse
impl TryFrom<CreateDelegationForEndUserAccountResponse> for CreateDelegationForEndUserAccountResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: CreateDelegationForEndUserAccountResponse,
) -> Result<Self, ConversionError>
fn try_from( value: CreateDelegationForEndUserAccountResponse, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for CreateDelegationForEndUserAccountResponse
impl RefUnwindSafe for CreateDelegationForEndUserAccountResponse
impl Send for CreateDelegationForEndUserAccountResponse
impl Sync for CreateDelegationForEndUserAccountResponse
impl Unpin for CreateDelegationForEndUserAccountResponse
impl UnsafeUnpin for CreateDelegationForEndUserAccountResponse
impl UnwindSafe for CreateDelegationForEndUserAccountResponse
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