pub struct InboundMessage {
pub recipient: String,
pub message_id: Uuid,
pub ciphertext_b64: String,
pub meta: MessageMeta,
pub payload_bytes: u64,
pub arrival_ms: u64,
pub deadline_ms: u64,
}Fields§
§recipient: String§message_id: Uuid§ciphertext_b64: String§meta: MessageMeta§payload_bytes: u64§arrival_ms: u64§deadline_ms: u64Trait Implementations§
Source§impl Clone for InboundMessage
impl Clone for InboundMessage
Source§fn clone(&self) -> InboundMessage
fn clone(&self) -> InboundMessage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for InboundMessage
impl RefUnwindSafe for InboundMessage
impl Send for InboundMessage
impl Sync for InboundMessage
impl Unpin for InboundMessage
impl UnwindSafe for InboundMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more