pub struct ValidateAddressR {
pub api_version: String,
pub request_id: String,
pub context: Option<String>,
pub data: Box<ValidateAddressRData>,
}Fields§
§api_version: StringSpecifies the version of the API that incorporates this endpoint.
request_id: StringDefines the ID of the request. The requestId is generated by Crypto APIs and it’s unique for every request.
context: Option<String>In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.
data: Box<ValidateAddressRData>Implementations§
Source§impl ValidateAddressR
impl ValidateAddressR
pub fn new( api_version: String, request_id: String, data: ValidateAddressRData, ) -> ValidateAddressR
Trait Implementations§
Source§impl Clone for ValidateAddressR
impl Clone for ValidateAddressR
Source§fn clone(&self) -> ValidateAddressR
fn clone(&self) -> ValidateAddressR
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 ValidateAddressR
impl Debug for ValidateAddressR
Source§impl<'de> Deserialize<'de> for ValidateAddressR
impl<'de> Deserialize<'de> for ValidateAddressR
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 PartialEq for ValidateAddressR
impl PartialEq for ValidateAddressR
Source§impl Serialize for ValidateAddressR
impl Serialize for ValidateAddressR
impl StructuralPartialEq for ValidateAddressR
Auto Trait Implementations§
impl Freeze for ValidateAddressR
impl RefUnwindSafe for ValidateAddressR
impl Send for ValidateAddressR
impl Sync for ValidateAddressR
impl Unpin for ValidateAddressR
impl UnwindSafe for ValidateAddressR
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