pub struct AtomLink {
pub xml_namespace_atom: Option<String>,
pub mime_type: Option<String>,
pub rel: String,
pub href: String,
pub title: Option<String>,
}
Expand description
Represents an <atom:link>
tag
Fields§
§xml_namespace_atom: Option<String>
§mime_type: Option<String>
§rel: String
§href: String
§title: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AtomLink
impl<'de> Deserialize<'de> for AtomLink
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 Freeze for AtomLink
impl RefUnwindSafe for AtomLink
impl Send for AtomLink
impl Sync for AtomLink
impl Unpin for AtomLink
impl UnwindSafe for AtomLink
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