pub struct Link {
pub hash_key: Option<String>,
pub icon: Option<String>,
pub include_vars: Option<bool>,
pub keep_time: Option<bool>,
pub tags: Option<Vec<String>>,
pub target_time: Option<bool>,
pub title: Option<String>,
pub type: Option<String>,
pub url: Option<String>,
}
Fields§
§hash_key: Option<String>
§icon: Option<String>
§include_vars: Option<bool>
§keep_time: Option<bool>
§target_time: Option<bool>
§title: Option<String>
§type: Option<String>
§url: Option<String>
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
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