pub struct WalletOutputRewindKeysDomain;Expand description
A hashing domain instance
Trait Implementations§
Source§impl Clone for WalletOutputRewindKeysDomain
impl Clone for WalletOutputRewindKeysDomain
Source§fn clone(&self) -> WalletOutputRewindKeysDomain
fn clone(&self) -> WalletOutputRewindKeysDomain
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 moreSource§impl Debug for WalletOutputRewindKeysDomain
impl Debug for WalletOutputRewindKeysDomain
Source§impl DomainSeparation for WalletOutputRewindKeysDomain
impl DomainSeparation for WalletOutputRewindKeysDomain
Source§fn domain() -> &'static str
fn domain() -> &'static str
Returns the category label for the metadata tag. For example,
tari_hmacSource§fn domain_separation_tag<S>(label: S) -> String
fn domain_separation_tag<S>(label: S) -> String
The domain separation tag is defined as
{domain}.v{version}.{label}, where the version and tag are
typically hard-coded into the implementing type, and the label is provided per specific application of the
domainSource§fn add_domain_separation_tag<S, D>(digest: &mut D, label: S)
fn add_domain_separation_tag<S, D>(digest: &mut D, label: S)
Adds the domain separation tag to the given digest. The domain separation tag is defined as
{domain}.v{version}.{label}, where the version and tag are typically hard-coded into the implementing
type, and the label is provided per specific application of the domain.Source§impl Hash for WalletOutputRewindKeysDomain
impl Hash for WalletOutputRewindKeysDomain
Source§impl Ord for WalletOutputRewindKeysDomain
impl Ord for WalletOutputRewindKeysDomain
Source§fn cmp(&self, other: &WalletOutputRewindKeysDomain) -> Ordering
fn cmp(&self, other: &WalletOutputRewindKeysDomain) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for WalletOutputRewindKeysDomain
impl PartialEq for WalletOutputRewindKeysDomain
Source§fn eq(&self, other: &WalletOutputRewindKeysDomain) -> bool
fn eq(&self, other: &WalletOutputRewindKeysDomain) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for WalletOutputRewindKeysDomain
impl PartialOrd for WalletOutputRewindKeysDomain
impl Copy for WalletOutputRewindKeysDomain
impl Eq for WalletOutputRewindKeysDomain
impl StructuralPartialEq for WalletOutputRewindKeysDomain
Auto Trait Implementations§
impl Freeze for WalletOutputRewindKeysDomain
impl RefUnwindSafe for WalletOutputRewindKeysDomain
impl Send for WalletOutputRewindKeysDomain
impl Sync for WalletOutputRewindKeysDomain
impl Unpin for WalletOutputRewindKeysDomain
impl UnwindSafe for WalletOutputRewindKeysDomain
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more