[][src]Struct places::storage::bookmarks::FetchedTreeRow

struct FetchedTreeRow {
    level: u32,
    id: RowId,
    guid: SyncGuid,
    parent: Option<RowId>,
    parent_guid: Option<SyncGuid>,
    node_type: BookmarkType,
    position: u32,
    title: Option<String>,
    date_added: Timestamp,
    last_modified: Timestamp,
    url: Option<String>,
}

Fields

level: u32id: RowIdguid: SyncGuidparent: Option<RowId>parent_guid: Option<SyncGuid>node_type: BookmarkTypeposition: u32title: Option<String>date_added: Timestamplast_modified: Timestampurl: Option<String>

Implementations

impl FetchedTreeRow[src]

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

Trait Implementations

impl Debug for FetchedTreeRow[src]

Auto Trait Implementations

impl RefUnwindSafe for FetchedTreeRow

impl Send for FetchedTreeRow

impl Sync for FetchedTreeRow

impl Unpin for FetchedTreeRow

impl UnwindSafe for FetchedTreeRow

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