Struct xmpp_parsers::hashes::Sha1HexAttribute
source · pub struct Sha1HexAttribute(/* private fields */);
Expand description
Helper for parsing and serialising a SHA-1 attribute.
Methods from Deref<Target = Hash>§
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 Clone for Sha1HexAttribute
impl Clone for Sha1HexAttribute
source§fn clone(&self) -> Sha1HexAttribute
fn clone(&self) -> Sha1HexAttribute
Returns a copy 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 moresource§impl Debug for Sha1HexAttribute
impl Debug for Sha1HexAttribute
source§impl Deref for Sha1HexAttribute
impl Deref for Sha1HexAttribute
source§impl DerefMut for Sha1HexAttribute
impl DerefMut for Sha1HexAttribute
source§impl FromStr for Sha1HexAttribute
impl FromStr for Sha1HexAttribute
source§impl IntoAttributeValue for Sha1HexAttribute
impl IntoAttributeValue for Sha1HexAttribute
source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
Turns this into an attribute string, or None if it shouldn’t be added.
source§impl PartialEq for Sha1HexAttribute
impl PartialEq for Sha1HexAttribute
source§fn eq(&self, other: &Sha1HexAttribute) -> bool
fn eq(&self, other: &Sha1HexAttribute) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Sha1HexAttribute
Auto Trait Implementations§
impl Freeze for Sha1HexAttribute
impl RefUnwindSafe for Sha1HexAttribute
impl Send for Sha1HexAttribute
impl Sync for Sha1HexAttribute
impl Unpin for Sha1HexAttribute
impl UnwindSafe for Sha1HexAttribute
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