pub struct Owner {
pub address: Option<SourceAddress>,
pub email: Option<String>,
pub name: Option<String>,
pub phone: Option<String>,
}Fields§
§address: Option<SourceAddress>Owner’s address.
email: Option<String>Owner’s email address.
name: Option<String>Owner’s full name.
phone: Option<String>Owner’s phone number.
Implementations§
Trait Implementations§
impl Eq for Owner
impl StructuralPartialEq for Owner
Auto Trait Implementations§
impl Freeze for Owner
impl RefUnwindSafe for Owner
impl Send for Owner
impl Sync for Owner
impl Unpin for Owner
impl UnsafeUnpin for Owner
impl UnwindSafe for Owner
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