[][src]Struct dropbox_sdk::files::SearchResult

pub struct SearchResult {
    pub matches: Vec<SearchMatch>,
    pub more: bool,
    pub start: u64,
}

Fields

matches: Vec<SearchMatch>

A list (possibly empty) of matches for the query.

more: bool

Used for paging. If true, indicates there is another page of results available that can be fetched by calling search() again.

start: u64

Used for paging. Value to set the start argument to when calling search() to fetch the next page of results.

Methods

impl SearchResult[src]

pub fn new(matches: Vec<SearchMatch>, more: bool, start: u64) -> Self[src]

Trait Implementations

impl Debug for SearchResult[src]

impl Serialize for SearchResult[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]