mastodon API rust lib elefren, fixed and updated. and also all ASYNC! NB. most examples are now wrong.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
elefren-fork/src/entities/instance.rs

19 lines
579 B

//! Module containing everything related to an instance.
/// A struct containing info of an instance.
#[derive(Debug, Clone, Deserialize)]
pub struct Instance {
/// URI of the current instance
pub uri: String,
/// The instance's title.
pub title: String,
/// A description for the instance.
pub description: String,
/// An email address which can be used to contact the
/// instance administrator.
pub email: String,
/// The Mastodon version used by instance.
pub version: String,
/// `streaming_api`
pub urls: Vec<String>,
}