pub struct Link {
pub location: Location,
pub rel: String,
pub url: Option<String>,
pub uri: Option<String>,
pub title: Option<String>,
pub titles: Option<LocalizedText>,
pub type_: Option<String>,
pub hreflang: Option<String>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A link to an external resource.
Fields§
§location: Location
§rel: String
§url: Option<String>
§uri: Option<String>
§title: Option<String>
§titles: Option<LocalizedText>
§type_: Option<String>
§hreflang: Option<String>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Link
impl<'de> Deserialize<'de> for Link
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
impl Eq for Link
impl StructuralPartialEq for Link
Auto Trait Implementations§
impl Freeze for Link
impl RefUnwindSafe for Link
impl Send for Link
impl Sync for Link
impl Unpin for Link
impl UnwindSafe for Link
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