msnp11-sdk 0.11.3

An MSNP11 client SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// MSNP lists.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "uniffi", derive(uniffi::Enum))]
pub enum MsnpList {
    /// Your contact list as it appears in the client.
    ForwardList,

    /// List of people allowed to talk to you and see your presence (only applies if using a [BLP][crate::client::Client::set_blp] of `BL`).
    AllowList,

    /// What contacts are blocked.
    BlockList,

    ReverseList,
    PendingList,
}