[][src]Struct places::storage::bookmarks::public_node::PublicNode

pub struct PublicNode {
    pub node_type: BookmarkType,
    pub guid: SyncGuid,
    pub parent_guid: Option<SyncGuid>,
    pub position: u32,
    pub date_added: Timestamp,
    pub last_modified: Timestamp,
    pub url: Option<Url>,
    pub title: Option<String>,
    pub child_guids: Option<Vec<SyncGuid>>,
    pub child_nodes: Option<Vec<PublicNode>>,
}

This type basically exists to become a msg_types::BookmarkNode, but is slightly less of a pain to deal with in rust.

Fields

node_type: BookmarkTypeguid: SyncGuidparent_guid: Option<SyncGuid>position: u32date_added: Timestamplast_modified: Timestampurl: Option<Url>title: Option<String>child_guids: Option<Vec<SyncGuid>>child_nodes: Option<Vec<PublicNode>>

Trait Implementations

impl Clone for PublicNode[src]

impl Debug for PublicNode[src]

impl Default for PublicNode[src]

impl From<BookmarkTreeNode> for PublicNode[src]

impl From<PublicNode> for BookmarkNode[src]

impl From<RawBookmark> for PublicNode[src]

impl IntoFfi for PublicNode where
    BookmarkNode: From<PublicNode> + IntoFfi
[src]

type Value = <BookmarkNode as IntoFfi>::Value

This type must be: Read more

impl PartialEq<PublicNode> for PublicNode[src]

Auto Trait Implementations

impl RefUnwindSafe for PublicNode

impl Send for PublicNode

impl Sync for PublicNode

impl Unpin for PublicNode

impl UnwindSafe for PublicNode

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