pub struct EndUserEvmAccount {
pub address: EndUserEvmAccountAddress,
pub created_at: DateTime<Utc>,
}Expand description
Information about an EVM account associated with an end user.
JSON schema
{
"description": "Information about an EVM account associated with an end user.",
"type": "object",
"required": [
"address",
"createdAt"
],
"properties": {
"address": {
"description": "The address of the EVM account.",
"examples": [
"0x742d35Cc6634C0532925a3b844Bc454e4438f44e"
],
"type": "string",
"pattern": "^0x[0-9a-fA-F]{40}$"
},
"createdAt": {
"description": "The date and time when the account was created, in ISO 8601 format.",
"examples": [
"2025-01-15T10:30:00Z"
],
"type": "string",
"format": "date-time"
}
}
}Fields§
§address: EndUserEvmAccountAddressThe address of the EVM account.
created_at: DateTime<Utc>The date and time when the account was created, in ISO 8601 format.
Implementations§
Source§impl EndUserEvmAccount
impl EndUserEvmAccount
pub fn builder() -> EndUserEvmAccount
Trait Implementations§
Source§impl Clone for EndUserEvmAccount
impl Clone for EndUserEvmAccount
Source§fn clone(&self) -> EndUserEvmAccount
fn clone(&self) -> EndUserEvmAccount
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 EndUserEvmAccount
impl Debug for EndUserEvmAccount
Source§impl<'de> Deserialize<'de> for EndUserEvmAccount
impl<'de> Deserialize<'de> for EndUserEvmAccount
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<&EndUserEvmAccount> for EndUserEvmAccount
impl From<&EndUserEvmAccount> for EndUserEvmAccount
Source§fn from(value: &EndUserEvmAccount) -> Self
fn from(value: &EndUserEvmAccount) -> Self
Converts to this type from the input type.
Source§impl From<EndUserEvmAccount> for EndUserEvmAccount
impl From<EndUserEvmAccount> for EndUserEvmAccount
Source§fn from(value: EndUserEvmAccount) -> Self
fn from(value: EndUserEvmAccount) -> Self
Converts to this type from the input type.
Source§impl Serialize for EndUserEvmAccount
impl Serialize for EndUserEvmAccount
Source§impl TryFrom<EndUserEvmAccount> for EndUserEvmAccount
impl TryFrom<EndUserEvmAccount> for EndUserEvmAccount
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: EndUserEvmAccount) -> Result<Self, ConversionError>
fn try_from(value: EndUserEvmAccount) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for EndUserEvmAccount
impl RefUnwindSafe for EndUserEvmAccount
impl Send for EndUserEvmAccount
impl Sync for EndUserEvmAccount
impl Unpin for EndUserEvmAccount
impl UnwindSafe for EndUserEvmAccount
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