pub struct TraderCodeResponse {
pub code: Option<String>,
pub created_at: Option<String>,
}Expand description
TraderCodeResponse
JSON schema
{
"type": "object",
"properties": {
"code": {
"description": "Your TraderCode — your normalized wallet address (clients render it `Monaco - <address>`).",
"examples": [
"0x0000000000000000000000000000000000000002"
],
"type": [
"string",
"null"
]
},
"createdAt": {
"description": "RFC 3339 timestamp when the code row was first derived",
"examples": [
"2026-07-07T18:00:00Z"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§code: Option<String>Your TraderCode — your normalized wallet address (clients render it Monaco - <address>).
created_at: Option<String>RFC 3339 timestamp when the code row was first derived
Trait Implementations§
Source§impl Clone for TraderCodeResponse
impl Clone for TraderCodeResponse
Source§fn clone(&self) -> TraderCodeResponse
fn clone(&self) -> TraderCodeResponse
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 Debug for TraderCodeResponse
impl Debug for TraderCodeResponse
Source§impl Default for TraderCodeResponse
impl Default for TraderCodeResponse
Source§impl<'de> Deserialize<'de> for TraderCodeResponse
impl<'de> Deserialize<'de> for TraderCodeResponse
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
Auto Trait Implementations§
impl Freeze for TraderCodeResponse
impl RefUnwindSafe for TraderCodeResponse
impl Send for TraderCodeResponse
impl Sync for TraderCodeResponse
impl Unpin for TraderCodeResponse
impl UnsafeUnpin for TraderCodeResponse
impl UnwindSafe for TraderCodeResponse
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