pub struct PartyAddressSchema {
pub type_: Option<String>,
pub address: Option<AddressSchema>,
pub move_in_date: Option<String>,
}
Fields§
§type_: Option<String>
Type of address
address: Option<AddressSchema>
§move_in_date: Option<String>
UTC Timestamp of the move in for current address
Trait Implementations§
Source§impl Debug for PartyAddressSchema
impl Debug for PartyAddressSchema
Source§impl<'de> Deserialize<'de> for PartyAddressSchema
impl<'de> Deserialize<'de> for PartyAddressSchema
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 Display for PartyAddressSchema
impl Display for PartyAddressSchema
Auto Trait Implementations§
impl Freeze for PartyAddressSchema
impl RefUnwindSafe for PartyAddressSchema
impl Send for PartyAddressSchema
impl Sync for PartyAddressSchema
impl Unpin for PartyAddressSchema
impl UnwindSafe for PartyAddressSchema
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