pub struct AddressConfig {
pub format_template: String,
pub components: AddressComponentsConfig,
pub postal_code: PostalCodeConfig,
pub building_number: BuildingNumberConfig,
pub country_calling_code: String,
}Fields§
§format_template: String§components: AddressComponentsConfig§postal_code: PostalCodeConfig§building_number: BuildingNumberConfig§country_calling_code: StringTrait Implementations§
Source§impl Clone for AddressConfig
impl Clone for AddressConfig
Source§fn clone(&self) -> AddressConfig
fn clone(&self) -> AddressConfig
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 AddressConfig
impl Debug for AddressConfig
Source§impl Default for AddressConfig
impl Default for AddressConfig
Source§fn default() -> AddressConfig
fn default() -> AddressConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddressConfig
impl<'de> Deserialize<'de> for AddressConfig
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
Auto Trait Implementations§
impl Freeze for AddressConfig
impl RefUnwindSafe for AddressConfig
impl Send for AddressConfig
impl Sync for AddressConfig
impl Unpin for AddressConfig
impl UnsafeUnpin for AddressConfig
impl UnwindSafe for AddressConfig
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