[][src]Struct places::storage::PageInfo

pub struct PageInfo {
    pub url: Url,
    pub guid: SyncGuid,
    pub row_id: RowId,
    pub title: String,
    pub hidden: bool,
    pub typed: u32,
    pub frecency: i32,
    pub visit_count_local: i32,
    pub visit_count_remote: i32,
    pub last_visit_date_local: Timestamp,
    pub last_visit_date_remote: Timestamp,
    pub sync_status: SyncStatus,
    pub sync_change_counter: u32,
}

Fields

url: Urlguid: SyncGuidrow_id: RowIdtitle: Stringhidden: booltyped: u32frecency: i32visit_count_local: i32visit_count_remote: i32last_visit_date_local: Timestamplast_visit_date_remote: Timestampsync_status: SyncStatussync_change_counter: u32

Implementations

impl PageInfo[src]

pub fn from_row(row: &Row<'_>) -> Result<Self>[src]

Trait Implementations

impl Debug for PageInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for PageInfo

impl Send for PageInfo

impl Sync for PageInfo

impl Unpin for PageInfo

impl UnwindSafe for PageInfo

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> From<T> for T[src]

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

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>,