simple_slack_gen 0.1.0

Rust API Client
Documentation
1
2
3
4
5
6
7
8
9
10
/// SlackError
#[cfg_attr(feature = "cli", derive(clap::Args))]
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct SlackError {
    /// error type
    #[cfg_attr(feature = "cli", arg(id = "error", long = "error"))]
    pub error: String,
    #[cfg_attr(feature = "cli", arg(id = "ok", long = "ok"))]
    pub ok: bool,
}