[][src]Enum places::types::BookmarkType

#[repr(u8)]pub enum BookmarkType {
    Bookmark,
    Folder,
    Separator,
}

Bookmark types.

Variants

Bookmark
Folder
Separator

Implementations

impl BookmarkType[src]

pub fn from_u8(v: u8) -> Option<Self>[src]

pub fn from_u8_with_valid_url<F: Fn() -> bool>(v: u8, has_valid_url: F) -> Self[src]

Trait Implementations

impl Clone for BookmarkType[src]

impl Copy for BookmarkType[src]

impl Debug for BookmarkType[src]

impl Eq for BookmarkType[src]

impl FromSql for BookmarkType[src]

impl Hash for BookmarkType[src]

impl Ord for BookmarkType[src]

impl PartialEq<BookmarkType> for BookmarkType[src]

impl PartialOrd<BookmarkType> for BookmarkType[src]

impl Serialize for BookmarkType[src]

impl StructuralEq for BookmarkType[src]

impl StructuralPartialEq for BookmarkType[src]

impl ToSql for BookmarkType[src]

Auto Trait Implementations

impl RefUnwindSafe for BookmarkType

impl Send for BookmarkType

impl Sync for BookmarkType

impl Unpin for BookmarkType

impl UnwindSafe for BookmarkType

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