msnp11-sdk 0.11.3

An MSNP11 client SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Errors when sending messages.
#[derive(Debug, thiserror::Error)]
#[cfg_attr(feature = "uniffi", derive(uniffi::Error))]
pub enum MessagingError {
    #[error("Error receiving data")]
    ReceivingError,
    #[error("Error transmitting data")]
    TransmittingError,
    #[error("Could not get session ID")]
    CouldNotGetSessionId,
    #[error("Message could not be delivered to all recipients")]
    MessageNotDelivered,
}