Struct xmpp_parsers::hashes::Hash
source · pub struct Hash {
pub algo: Algo,
pub hash: <Base64 as Codec>::Decoded,
}
Expand description
This element represents a hash of some data, defined by the hash algorithm used and the computed value.
Fields§
§algo: Algo
The algorithm used to create this hash.
hash: <Base64 as Codec>::Decoded
The hash value, as a vector of bytes.
Implementations§
source§impl Hash
impl Hash
sourcepub fn new(algo: Algo, hash: Vec<u8>) -> Hash
pub fn new(algo: Algo, hash: Vec<u8>) -> Hash
Creates a Hash element with the given algo and data.
sourcepub fn from_base64(algo: Algo, hash: &str) -> Result<Hash, Error>
pub fn from_base64(algo: Algo, hash: &str) -> Result<Hash, Error>
Like new but takes base64-encoded data before decoding it.
sourcepub fn from_hex(algo: Algo, hex: &str) -> Result<Hash, ParseIntError>
pub fn from_hex(algo: Algo, hex: &str) -> Result<Hash, ParseIntError>
Like new but takes hex-encoded data before decoding it.
sourcepub fn from_colon_separated_hex(
algo: Algo,
hex: &str
) -> Result<Hash, ParseIntError>
pub fn from_colon_separated_hex( algo: Algo, hex: &str ) -> Result<Hash, ParseIntError>
Like new but takes hex-encoded data before decoding it.
sourcepub fn to_colon_separated_hex(&self) -> String
pub fn to_colon_separated_hex(&self) -> String
Formats this hash into colon-separated hexadecimal.
Trait Implementations§
source§impl PartialEq for Hash
impl PartialEq for Hash
impl StructuralPartialEq for Hash
Auto Trait Implementations§
impl Freeze for Hash
impl RefUnwindSafe for Hash
impl Send for Hash
impl Sync for Hash
impl Unpin for Hash
impl UnwindSafe for Hash
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