pub struct Bookmark {
pub url: String,
pub title: String,
pub tags: Vec<String>,
pub keyword: String,
pub date_added: i64,
pub last_modified: i64,
pub guid: String,
}Expand description
A bookmark entry.
Fields§
§url: StringThe URL of the bookmark.
title: StringThe display title.
Tags associated with this bookmark.
keyword: StringKeyword shortcut for the bookmark.
date_added: i64Date added as microseconds since Unix epoch.
last_modified: i64Last modified as microseconds since Unix epoch.
guid: StringFirefox sync GUID.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Bookmark
impl<'de> Deserialize<'de> for Bookmark
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 Bookmark
impl RefUnwindSafe for Bookmark
impl Send for Bookmark
impl Sync for Bookmark
impl Unpin for Bookmark
impl UnwindSafe for Bookmark
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