[][src]Struct places::bookmark_sync::record::LivemarkRecord

pub struct LivemarkRecord {
    pub record_id: BookmarkRecordId,
    pub parent_record_id: Option<BookmarkRecordId>,
    pub parent_title: Option<String>,
    pub date_added: Option<i64>,
    pub has_dupe: bool,
    pub title: Option<String>,
    pub feed_url: Option<String>,
    pub site_url: Option<String>,
}

Fields

record_id: BookmarkRecordIdparent_record_id: Option<BookmarkRecordId>parent_title: Option<String>date_added: Option<i64>has_dupe: booltitle: Option<String>feed_url: Option<String>site_url: Option<String>

Trait Implementations

impl Clone for LivemarkRecord[src]

impl Debug for LivemarkRecord[src]

impl<'de> Deserialize<'de> for LivemarkRecord[src]

impl From<LivemarkRecord> for BookmarkItemRecord[src]

impl Hash for LivemarkRecord[src]

impl PartialEq<LivemarkRecord> for LivemarkRecord[src]

impl Serialize for LivemarkRecord[src]

impl StructuralPartialEq for LivemarkRecord[src]

Auto Trait Implementations

impl RefUnwindSafe for LivemarkRecord

impl Send for LivemarkRecord

impl Sync for LivemarkRecord

impl Unpin for LivemarkRecord

impl UnwindSafe for LivemarkRecord

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CallHasher for T where
    T: Hash

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,