pub struct ValidateAddressRb {
pub context: Option<String>,
pub data: Box<ValidateAddressRbData>,
}Fields§
§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<ValidateAddressRbData>Implementations§
Source§impl ValidateAddressRb
impl ValidateAddressRb
pub fn new(data: ValidateAddressRbData) -> ValidateAddressRb
Trait Implementations§
Source§impl Clone for ValidateAddressRb
impl Clone for ValidateAddressRb
Source§fn clone(&self) -> ValidateAddressRb
fn clone(&self) -> ValidateAddressRb
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 ValidateAddressRb
impl Debug for ValidateAddressRb
Source§impl<'de> Deserialize<'de> for ValidateAddressRb
impl<'de> Deserialize<'de> for ValidateAddressRb
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 ValidateAddressRb
impl PartialEq for ValidateAddressRb
Source§impl Serialize for ValidateAddressRb
impl Serialize for ValidateAddressRb
impl StructuralPartialEq for ValidateAddressRb
Auto Trait Implementations§
impl Freeze for ValidateAddressRb
impl RefUnwindSafe for ValidateAddressRb
impl Send for ValidateAddressRb
impl Sync for ValidateAddressRb
impl Unpin for ValidateAddressRb
impl UnwindSafe for ValidateAddressRb
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