pub(crate) struct ProteusCipherMessage {
pub session_tag: SessionTag,
pub counter: u32,
pub prev_counter: u32,
pub ratchet_key: String,
pub cipher_text: String,
}
Fields§
§session_tag: SessionTag
§counter: u32
§prev_counter: u32
§ratchet_key: String
§cipher_text: String
Trait Implementations§
Source§impl Debug for ProteusCipherMessage
impl Debug for ProteusCipherMessage
Auto Trait Implementations§
impl Freeze for ProteusCipherMessage
impl RefUnwindSafe for ProteusCipherMessage
impl Send for ProteusCipherMessage
impl Sync for ProteusCipherMessage
impl Unpin for ProteusCipherMessage
impl UnwindSafe for ProteusCipherMessage
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