pub struct IrContact {
pub name: Option<String>,
pub url: Option<String>,
pub email: Option<String>,
}Expand description
Contact information.
Fields§
§name: Option<String>§url: Option<String>§email: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for IrContact
impl RefUnwindSafe for IrContact
impl Send for IrContact
impl Sync for IrContact
impl Unpin for IrContact
impl UnsafeUnpin for IrContact
impl UnwindSafe for IrContact
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