#[non_exhaustive]pub struct ValidateE911AddressOutput { /* private fields */ }Implementations§
source§impl ValidateE911AddressOutput
impl ValidateE911AddressOutput
sourcepub fn validation_result(&self) -> i32
pub fn validation_result(&self) -> i32
Number indicating the result of address validation. 0 means the address was perfect as is and successfully validated. 1 means the address was corrected. 2 means the address sent was not close enough and was not validated.
sourcepub fn address_external_id(&self) -> Option<&str>
pub fn address_external_id(&self) -> Option<&str>
The ID that represents the address.
sourcepub fn candidate_address_list(&self) -> Option<&[CandidateAddress]>
pub fn candidate_address_list(&self) -> Option<&[CandidateAddress]>
The list of address suggestions.
source§impl ValidateE911AddressOutput
impl ValidateE911AddressOutput
sourcepub fn builder() -> ValidateE911AddressOutputBuilder
pub fn builder() -> ValidateE911AddressOutputBuilder
Creates a new builder-style object to manufacture ValidateE911AddressOutput.
Trait Implementations§
source§impl Clone for ValidateE911AddressOutput
impl Clone for ValidateE911AddressOutput
source§fn clone(&self) -> ValidateE911AddressOutput
fn clone(&self) -> ValidateE911AddressOutput
Returns a copy 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 ValidateE911AddressOutput
impl Debug for ValidateE911AddressOutput
source§impl PartialEq<ValidateE911AddressOutput> for ValidateE911AddressOutput
impl PartialEq<ValidateE911AddressOutput> for ValidateE911AddressOutput
source§fn eq(&self, other: &ValidateE911AddressOutput) -> bool
fn eq(&self, other: &ValidateE911AddressOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for ValidateE911AddressOutput
impl RequestId for ValidateE911AddressOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for ValidateE911AddressOutput
Auto Trait Implementations§
impl RefUnwindSafe for ValidateE911AddressOutput
impl Send for ValidateE911AddressOutput
impl Sync for ValidateE911AddressOutput
impl Unpin for ValidateE911AddressOutput
impl UnwindSafe for ValidateE911AddressOutput
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