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