pub enum TransformPhase {
EncodeDecode,
SignVerify,
CompressDecompress,
EncryptDecrypt,
}Expand description
The phase of the transformation process.
Variants§
EncodeDecode
Initial to/from bytes.
SignVerify
Signature calculation and verification.
CompressDecompress
Compression and decompression.
EncryptDecrypt
Encryption and decryption.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TransformPhase
impl RefUnwindSafe for TransformPhase
impl Send for TransformPhase
impl Sync for TransformPhase
impl Unpin for TransformPhase
impl UnwindSafe for TransformPhase
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