tbot 0.5.1

Make cool Telegram bots with Rust easily.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use is_macro::Is;

/// Chooses if price is flexible (i.e. it depends on some factor).
#[derive(Debug, PartialEq, Eq, Clone, Copy, Hash, Is)]
#[must_use]
pub enum Flexibility {
    /// The price is flexible.
    Flexible,
    /// The price is not flexible.
    Inflexible,
}