pub enum WriteProcessor {
None,
RC4 {
alg: HashAlgorithm,
key: Rc4,
mac_secret: Vec<u8>,
seq: u64,
},
}Expand description
Handler for processing messages that need to be written converts them to writing messages
Variants§
None
NO-OP Write processor which directly converts the message to OpaqueMessage
RC4
RC4 Encryption processor which encrypts the message before converting
Implementations§
Auto Trait Implementations§
impl Freeze for WriteProcessor
impl RefUnwindSafe for WriteProcessor
impl Send for WriteProcessor
impl Sync for WriteProcessor
impl Unpin for WriteProcessor
impl UnwindSafe for WriteProcessor
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