pub struct GetUserFiatKycLinkResponseRejectionReasonsItem {
pub created_at: String,
pub developer_reason: String,
pub reason: String,
}Expand description
GetUserFiatKycLinkResponseRejectionReasonsItem
JSON schema
{
"type": "object",
"required": [
"created_at",
"developer_reason",
"reason"
],
"properties": {
"created_at": {
"type": "string"
},
"developer_reason": {
"type": "string"
},
"reason": {
"type": "string"
}
}
}Fields§
§created_at: String§developer_reason: String§reason: StringTrait Implementations§
Source§impl Clone for GetUserFiatKycLinkResponseRejectionReasonsItem
impl Clone for GetUserFiatKycLinkResponseRejectionReasonsItem
Source§fn clone(&self) -> GetUserFiatKycLinkResponseRejectionReasonsItem
fn clone(&self) -> GetUserFiatKycLinkResponseRejectionReasonsItem
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 GetUserFiatKycLinkResponseRejectionReasonsItem
impl<'de> Deserialize<'de> for GetUserFiatKycLinkResponseRejectionReasonsItem
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<&GetUserFiatKycLinkResponseRejectionReasonsItem> for GetUserFiatKycLinkResponseRejectionReasonsItem
impl From<&GetUserFiatKycLinkResponseRejectionReasonsItem> for GetUserFiatKycLinkResponseRejectionReasonsItem
Source§fn from(value: &GetUserFiatKycLinkResponseRejectionReasonsItem) -> Self
fn from(value: &GetUserFiatKycLinkResponseRejectionReasonsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetUserFiatKycLinkResponseRejectionReasonsItem
impl RefUnwindSafe for GetUserFiatKycLinkResponseRejectionReasonsItem
impl Send for GetUserFiatKycLinkResponseRejectionReasonsItem
impl Sync for GetUserFiatKycLinkResponseRejectionReasonsItem
impl Unpin for GetUserFiatKycLinkResponseRejectionReasonsItem
impl UnsafeUnpin for GetUserFiatKycLinkResponseRejectionReasonsItem
impl UnwindSafe for GetUserFiatKycLinkResponseRejectionReasonsItem
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