pub struct KytDirectExposureDetail {
pub category_id: Option<i64>,
pub name: Option<String>,
}Expand description
KytDirectExposureDetail
JSON schema
{
"type": "object",
"properties": {
"categoryId": {
"description": "DTO.KYT.DIRECT_EXPOSURE_DETAIL.CATEGORY_ID",
"examples": [
17
],
"type": "integer",
"format": "int64"
},
"name": {
"description": "DTO.KYT.DIRECT_EXPOSURE_DETAIL.NAME",
"examples": [
"BitPay.com"
],
"type": "string"
}
}
}Fields§
§category_id: Option<i64>DTO.KYT.DIRECT_EXPOSURE_DETAIL.CATEGORY_ID
name: Option<String>DTO.KYT.DIRECT_EXPOSURE_DETAIL.NAME
Implementations§
Source§impl KytDirectExposureDetail
impl KytDirectExposureDetail
pub fn builder() -> KytDirectExposureDetail
Trait Implementations§
Source§impl Clone for KytDirectExposureDetail
impl Clone for KytDirectExposureDetail
Source§fn clone(&self) -> KytDirectExposureDetail
fn clone(&self) -> KytDirectExposureDetail
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 KytDirectExposureDetail
impl Debug for KytDirectExposureDetail
Source§impl Default for KytDirectExposureDetail
impl Default for KytDirectExposureDetail
Source§impl<'de> Deserialize<'de> for KytDirectExposureDetail
impl<'de> Deserialize<'de> for KytDirectExposureDetail
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<&KytDirectExposureDetail> for KytDirectExposureDetail
impl From<&KytDirectExposureDetail> for KytDirectExposureDetail
Source§fn from(value: &KytDirectExposureDetail) -> Self
fn from(value: &KytDirectExposureDetail) -> Self
Converts to this type from the input type.
Source§impl From<KytDirectExposureDetail> for KytDirectExposureDetail
impl From<KytDirectExposureDetail> for KytDirectExposureDetail
Source§fn from(value: KytDirectExposureDetail) -> Self
fn from(value: KytDirectExposureDetail) -> Self
Converts to this type from the input type.
Source§impl Serialize for KytDirectExposureDetail
impl Serialize for KytDirectExposureDetail
Source§impl TryFrom<KytDirectExposureDetail> for KytDirectExposureDetail
impl TryFrom<KytDirectExposureDetail> for KytDirectExposureDetail
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: KytDirectExposureDetail) -> Result<Self, ConversionError>
fn try_from(value: KytDirectExposureDetail) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for KytDirectExposureDetail
impl RefUnwindSafe for KytDirectExposureDetail
impl Send for KytDirectExposureDetail
impl Sync for KytDirectExposureDetail
impl Unpin for KytDirectExposureDetail
impl UnsafeUnpin for KytDirectExposureDetail
impl UnwindSafe for KytDirectExposureDetail
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