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/status_builder.rs

48 lines
1.2 KiB

7 years ago
#[derive(Debug, Default, Clone, Serialize)]
pub struct StatusBuilder {
pub status: String,
/// User ids of those to reply to.
7 years ago
#[serde(skip_serializing_if="Option::is_none")]
pub in_reply_to_id: Option<u64>,
7 years ago
#[serde(skip_serializing_if="Option::is_none")]
pub media_ids: Option<Vec<u64>>,
7 years ago
#[serde(skip_serializing_if="Option::is_none")]
pub sensitive: Option<bool>,
7 years ago
#[serde(skip_serializing_if="Option::is_none")]
pub spoiler_text: Option<String>,
7 years ago
#[serde(skip_serializing_if="Option::is_none")]
pub visibility: Option<Visibility>,
7 years ago
}
#[derive(Clone, Copy, Debug, Deserialize, Serialize)]
pub enum Visibility {
/// A Direct message to a user
7 years ago
#[serde(rename = "direct")]
Direct,
/// Only available to followers
7 years ago
#[serde(rename = "private")]
Private,
/// Not shown in public timelines
7 years ago
#[serde(rename = "unlisted")]
Unlisted,
/// Posted to public timelines
7 years ago
#[serde(rename = "public")]
Public,
}
impl StatusBuilder {
pub fn new(status: String) -> Self {
StatusBuilder {
status: status,
..Self::default()
}
}
}
impl Default for Visibility {
fn default() -> Self {
Visibility::Public
}
}