mammut 0.13.0

A wrapper around the Mastodon API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! A module containing info relating to a search result.

use super::prelude::{Account, Status};

/// A struct containing results of a search.
#[derive(Debug, Clone, Deserialize)]
pub struct SearchResult {
    /// An array of matched Accounts.
    pub accounts: Vec<Account>,
    /// An array of matched Statuses.
    pub statuses: Vec<Status>,
    /// An array of matched hashtags, as strings.
    pub hashtags: Vec<String>,
}