//! Shared types for relay storage implementations.
/// A stored entry retrieved from the repository.
pubstructStoredEntry{/// The message body (None if entry was acked and body cleared).
pubmessage_body:Option<Vec<u8>>,
/// The content type of the message.
pubcontent_type:Option<String>,
/// Whether the entry has been acknowledged.
pubacked:bool,
/// Unix timestamp when the entry expires.
pubexpires_at:i64,
}