[][src]Enum dropbox_sdk::files::SearchMatchType

pub enum SearchMatchType {
    Filename,
    Content,
    Both,
}
This is supported on crate feature dbx_files only.

Indicates what type of match was found for a given item.

Variants

Filename

This item was matched on its file or folder name.

Content

This item was matched based on its file contents.

Both

This item was matched based on both its contents and its file name.

Trait Implementations

impl Clone for SearchMatchType[src]

impl Debug for SearchMatchType[src]

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

impl PartialEq<SearchMatchType> for SearchMatchType[src]

impl Serialize for SearchMatchType[src]

impl StructuralPartialEq for SearchMatchType[src]

Auto Trait Implementations

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