pub struct ContactWebPage {
pub page_type: Option<String>,
pub url: String,
}Expand description
A web page for a contact.
Fields§
§page_type: Option<String>Web page type (e.g., “homepage”, “blog”, “profile”, “other”).
url: StringThe URL.
Trait Implementations§
Source§impl Clone for ContactWebPage
impl Clone for ContactWebPage
Source§fn clone(&self) -> ContactWebPage
fn clone(&self) -> ContactWebPage
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 ContactWebPage
impl Debug for ContactWebPage
Source§impl<'de> Deserialize<'de> for ContactWebPage
impl<'de> Deserialize<'de> for ContactWebPage
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 PartialEq for ContactWebPage
impl PartialEq for ContactWebPage
Source§impl Serialize for ContactWebPage
impl Serialize for ContactWebPage
impl Eq for ContactWebPage
impl StructuralPartialEq for ContactWebPage
Auto Trait Implementations§
impl Freeze for ContactWebPage
impl RefUnwindSafe for ContactWebPage
impl Send for ContactWebPage
impl Sync for ContactWebPage
impl Unpin for ContactWebPage
impl UnwindSafe for ContactWebPage
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