Struct elefren::entities::search_result::SearchResultV2[][src]

pub struct SearchResultV2 {
    pub accounts: Vec<Account>,
    pub statuses: Vec<Status>,
    pub hashtags: Vec<Tag>,
}

A struct containing results of a search, with Tag objects in the hashtags field

Fields

An array of matched Accounts.

An array of matched Statuses.

An array of matched hashtags, as Tag objects.

Trait Implementations

impl Debug for SearchResultV2
[src]

Formats the value using the given formatter. Read more

impl Clone for SearchResultV2
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations