pub struct PostalInfo<'a> {
pub info_type: String,
pub name: StringValue<'a>,
pub organization: StringValue<'a>,
pub address: Address<'a>,
}Expand description
The <postalInfo> type on contact transactions
Fields§
§info_type: StringThe ‘type’ attr on <postalInfo>
name: StringValue<'a>The <name> tag under <postalInfo>
organization: StringValue<'a>The <org> tag under <postalInfo>
address: Address<'a>The <addr> tag under <postalInfo>
Implementations§
Trait Implementations§
Source§impl<'a> Clone for PostalInfo<'a>
impl<'a> Clone for PostalInfo<'a>
Source§fn clone(&self) -> PostalInfo<'a>
fn clone(&self) -> PostalInfo<'a>
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<'a> Debug for PostalInfo<'a>
impl<'a> Debug for PostalInfo<'a>
Source§impl<'de, 'a> Deserialize<'de> for PostalInfo<'a>
impl<'de, 'a> Deserialize<'de> for PostalInfo<'a>
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<'a> Freeze for PostalInfo<'a>
impl<'a> RefUnwindSafe for PostalInfo<'a>
impl<'a> Send for PostalInfo<'a>
impl<'a> Sync for PostalInfo<'a>
impl<'a> Unpin for PostalInfo<'a>
impl<'a> UnwindSafe for PostalInfo<'a>
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