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