pub struct KytNetworkIdentificationsResponse {
pub count: Option<i64>,
pub network_identification_orgs: Vec<KytNetworkIdentificationOrg>,
}Expand description
KytNetworkIdentificationsResponse
JSON schema
{
"type": "object",
"properties": {
"count": {
"description": "DTO.KYT.TRANSFER_NETWORK_IDENTIFICATIONS_RESPONSE.COUNT",
"examples": [
1
],
"type": "integer",
"format": "int64"
},
"networkIdentificationOrgs": {
"description": "DTO.KYT.TRANSFER_NETWORK_IDENTIFICATIONS_RESPONSE.NETWORK_IDENTIFICATION_ORGS",
"type": "array",
"items": {
"$ref": "#/components/schemas/KytNetworkIdentificationOrg"
}
}
}
}Fields§
§count: Option<i64>DTO.KYT.TRANSFER_NETWORK_IDENTIFICATIONS_RESPONSE.COUNT
network_identification_orgs: Vec<KytNetworkIdentificationOrg>DTO.KYT.TRANSFER_NETWORK_IDENTIFICATIONS_RESPONSE.NETWORK_IDENTIFICATION_ORGS
Implementations§
Trait Implementations§
Source§impl Clone for KytNetworkIdentificationsResponse
impl Clone for KytNetworkIdentificationsResponse
Source§fn clone(&self) -> KytNetworkIdentificationsResponse
fn clone(&self) -> KytNetworkIdentificationsResponse
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 KytNetworkIdentificationsResponse
impl<'de> Deserialize<'de> for KytNetworkIdentificationsResponse
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<&KytNetworkIdentificationsResponse> for KytNetworkIdentificationsResponse
impl From<&KytNetworkIdentificationsResponse> for KytNetworkIdentificationsResponse
Source§fn from(value: &KytNetworkIdentificationsResponse) -> Self
fn from(value: &KytNetworkIdentificationsResponse) -> Self
Converts to this type from the input type.
Source§impl From<KytNetworkIdentificationsResponse> for KytNetworkIdentificationsResponse
impl From<KytNetworkIdentificationsResponse> for KytNetworkIdentificationsResponse
Source§fn from(value: KytNetworkIdentificationsResponse) -> Self
fn from(value: KytNetworkIdentificationsResponse) -> Self
Converts to this type from the input type.
Source§impl TryFrom<KytNetworkIdentificationsResponse> for KytNetworkIdentificationsResponse
impl TryFrom<KytNetworkIdentificationsResponse> for KytNetworkIdentificationsResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: KytNetworkIdentificationsResponse,
) -> Result<Self, ConversionError>
fn try_from( value: KytNetworkIdentificationsResponse, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for KytNetworkIdentificationsResponse
impl RefUnwindSafe for KytNetworkIdentificationsResponse
impl Send for KytNetworkIdentificationsResponse
impl Sync for KytNetworkIdentificationsResponse
impl Unpin for KytNetworkIdentificationsResponse
impl UnsafeUnpin for KytNetworkIdentificationsResponse
impl UnwindSafe for KytNetworkIdentificationsResponse
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