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