mdk-storage-traits 0.8.0

Storage abstraction for MDK that wraps OpenMLS storage backends
Documentation
1
2
3
4
5
6
7
8
9
10
//! Error types for the messages module

storage_error! {
    /// Error types for the messages module
    pub enum MessageError {
        /// Message not found or not in expected state
        #[error("Message not found or not in expected state")]
        NotFound,
    }
}