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