pub struct PostalCodeResponse {
pub version: String,
pub data: Vec<PostalBlock>,
}Expand description
GET /postalcode/:postal_code
Fields§
§version: StringVersion of the data.
data: Vec<PostalBlock>Data is returned with json in array.
Trait Implementations§
Source§impl Debug for PostalCodeResponse
impl Debug for PostalCodeResponse
Source§impl<'de> Deserialize<'de> for PostalCodeResponse
impl<'de> Deserialize<'de> for PostalCodeResponse
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 PostalCodeResponse
impl PartialEq for PostalCodeResponse
impl StructuralPartialEq for PostalCodeResponse
Source§impl Ui for PostalCodeResponse
impl Ui for PostalCodeResponse
fn display_address(&self)
fn display_corporate(&self)
fn justify_content(data: &str, position: Justify) -> CellStruct
Auto Trait Implementations§
impl Freeze for PostalCodeResponse
impl RefUnwindSafe for PostalCodeResponse
impl Send for PostalCodeResponse
impl Sync for PostalCodeResponse
impl Unpin for PostalCodeResponse
impl UnsafeUnpin for PostalCodeResponse
impl UnwindSafe for PostalCodeResponse
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