Struct xmpp_parsers::hashes::Hash
source · pub struct Hash {
pub algo: Algo,
pub hash: Vec<u8>,
}
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: Vec<u8>
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 FromXml for Hash
impl FromXml for Hash
§type Builder = HashFromXmlBuilder
type Builder = HashFromXmlBuilder
A builder type used to construct the element. Read more
source§fn from_events(
name: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( name: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
source§impl IntoXml for Hash
impl IntoXml for Hash
§type EventIter = HashIntoXmlIterator
type EventIter = HashIntoXmlIterator
The iterator type. Read more
source§fn into_event_iter(self) -> Result<Self::EventIter, Error>
fn into_event_iter(self) -> Result<Self::EventIter, Error>
Return an iterator which emits the contents of the struct or enum as
serialisable
rxml::Event
items.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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)