pub struct HashEncodeResult {
pub encoded: String,
pub hash_algo: HashAlgorithm,
pub dictionary_name: String,
}Expand description
Result of a hash + encode operation.
Fields§
§encoded: StringThe encoded output
hash_algo: HashAlgorithmThe hash algorithm used
dictionary_name: StringName of the dictionary used for encoding
Trait Implementations§
Source§impl Clone for HashEncodeResult
impl Clone for HashEncodeResult
Source§fn clone(&self) -> HashEncodeResult
fn clone(&self) -> HashEncodeResult
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 HashEncodeResult
impl RefUnwindSafe for HashEncodeResult
impl Send for HashEncodeResult
impl Sync for HashEncodeResult
impl Unpin for HashEncodeResult
impl UnwindSafe for HashEncodeResult
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