Struct fixed_hash::ApiDummy
source · [−]Expand description
Go here for an overview of the hash type API.
Tuple Fields
0: [u8; 32]
Implementations
sourceimpl ApiDummy
impl ApiDummy
sourcepub const fn repeat_byte(byte: u8) -> ApiDummy
pub const fn repeat_byte(byte: u8) -> ApiDummy
Returns a new fixed hash where all bits are set to the given byte.
sourcepub fn as_bytes(&self) -> &[u8]ⓘNotable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8]
pub fn as_bytes(&self) -> &[u8]ⓘNotable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8]
Extracts a byte slice containing the entire fixed hash.
sourcepub fn as_bytes_mut(&mut self) -> &mut [u8]ⓘNotable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8]
pub fn as_bytes_mut(&mut self) -> &mut [u8]ⓘNotable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8]
Extracts a mutable byte slice containing the entire fixed hash.
sourcepub const fn as_fixed_bytes(&self) -> &[u8; 32]
pub const fn as_fixed_bytes(&self) -> &[u8; 32]
Extracts a reference to the byte array containing the entire fixed hash.
sourcepub fn as_fixed_bytes_mut(&mut self) -> &mut [u8; 32]
pub fn as_fixed_bytes_mut(&mut self) -> &mut [u8; 32]
Extracts a reference to the byte array containing the entire fixed hash.
sourcepub const fn to_fixed_bytes(self) -> [u8; 32]
pub const fn to_fixed_bytes(self) -> [u8; 32]
Returns the inner bytes array.
sourcepub fn as_mut_ptr(&mut self) -> *mut u8
pub fn as_mut_ptr(&mut self) -> *mut u8
Returns a mutable raw pointer to the value.
sourcepub fn assign_from_slice(&mut self, src: &[u8])
pub fn assign_from_slice(&mut self, src: &[u8])
sourcepub fn from_slice(src: &[u8]) -> Self
pub fn from_slice(src: &[u8]) -> Self
sourceimpl ApiDummy
impl ApiDummy
Utilities using the byteorder
crate.
sourcepub fn to_low_u64_be(&self) -> u64
pub fn to_low_u64_be(&self) -> u64
Returns the lowest 8 bytes interpreted as big-endian.
Note
For hash type with less than 8 bytes the missing bytes are interpreted as being zero.
sourcepub fn to_low_u64_le(&self) -> u64
pub fn to_low_u64_le(&self) -> u64
Returns the lowest 8 bytes interpreted as little-endian.
Note
For hash type with less than 8 bytes the missing bytes are interpreted as being zero.
sourcepub fn to_low_u64_ne(&self) -> u64
pub fn to_low_u64_ne(&self) -> u64
Returns the lowest 8 bytes interpreted as native-endian.
Note
For hash type with less than 8 bytes the missing bytes are interpreted as being zero.
sourcepub fn from_low_u64_be(val: u64) -> Self
pub fn from_low_u64_be(val: u64) -> Self
Creates a new hash type from the given u64
value.
Note
- The given
u64
value is interpreted as big endian. - Ignores the most significant bits of the given value if the hash type has less than 8 bytes.
sourcepub fn from_low_u64_le(val: u64) -> Self
pub fn from_low_u64_le(val: u64) -> Self
Creates a new hash type from the given u64
value.
Note
- The given
u64
value is interpreted as little endian. - Ignores the most significant bits of the given value if the hash type has less than 8 bytes.
sourcepub fn from_low_u64_ne(val: u64) -> Self
pub fn from_low_u64_ne(val: u64) -> Self
Creates a new hash type from the given u64
value.
Note
- The given
u64
value is interpreted as native endian. - Ignores the most significant bits of the given value if the hash type has less than 8 bytes.
sourceimpl ApiDummy
impl ApiDummy
Utilities using the rand
crate.
sourcepub fn randomize_using<R>(&mut self, rng: &mut R)where
R: Rng + ?Sized,
pub fn randomize_using<R>(&mut self, rng: &mut R)where
R: Rng + ?Sized,
Assign self
to a cryptographically random value using the
given random number generator.
sourcepub fn random_using<R>(rng: &mut R) -> Selfwhere
R: Rng + ?Sized,
pub fn random_using<R>(rng: &mut R) -> Selfwhere
R: Rng + ?Sized,
Create a new hash with cryptographically random content using the given random number generator.
Trait Implementations
sourceimpl<'r> BitAndAssign<&'r ApiDummy> for ApiDummy
impl<'r> BitAndAssign<&'r ApiDummy> for ApiDummy
sourcefn bitand_assign(&mut self, rhs: &'r ApiDummy)
fn bitand_assign(&mut self, rhs: &'r ApiDummy)
&=
operation. Read moresourceimpl BitAndAssign<ApiDummy> for ApiDummy
impl BitAndAssign<ApiDummy> for ApiDummy
sourcefn bitand_assign(&mut self, rhs: ApiDummy)
fn bitand_assign(&mut self, rhs: ApiDummy)
&=
operation. Read moresourceimpl<'r> BitOrAssign<&'r ApiDummy> for ApiDummy
impl<'r> BitOrAssign<&'r ApiDummy> for ApiDummy
sourcefn bitor_assign(&mut self, rhs: &'r ApiDummy)
fn bitor_assign(&mut self, rhs: &'r ApiDummy)
|=
operation. Read moresourceimpl BitOrAssign<ApiDummy> for ApiDummy
impl BitOrAssign<ApiDummy> for ApiDummy
sourcefn bitor_assign(&mut self, rhs: ApiDummy)
fn bitor_assign(&mut self, rhs: ApiDummy)
|=
operation. Read moresourceimpl<'r> BitXorAssign<&'r ApiDummy> for ApiDummy
impl<'r> BitXorAssign<&'r ApiDummy> for ApiDummy
sourcefn bitxor_assign(&mut self, rhs: &'r ApiDummy)
fn bitxor_assign(&mut self, rhs: &'r ApiDummy)
^=
operation. Read moresourceimpl BitXorAssign<ApiDummy> for ApiDummy
impl BitXorAssign<ApiDummy> for ApiDummy
sourcefn bitxor_assign(&mut self, rhs: ApiDummy)
fn bitxor_assign(&mut self, rhs: ApiDummy)
^=
operation. Read moresourceimpl Distribution<ApiDummy> for Standard
impl Distribution<ApiDummy> for Standard
sourcefn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> ApiDummy
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> ApiDummy
T
, using rng
as the source of randomness.sourcefn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where
R: Rng,
fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where
R: Rng,
T
, using rng
as
the source of randomness. Read moresourceimpl FromStr for ApiDummy
impl FromStr for ApiDummy
type Err = FromHexError
type Err = FromHexError
sourceimpl<I> Index<I> for ApiDummywhere
I: SliceIndex<[u8]>,
impl<I> Index<I> for ApiDummywhere
I: SliceIndex<[u8]>,
sourceimpl Ord for ApiDummy
impl Ord for ApiDummy
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
sourceimpl PartialOrd<ApiDummy> for ApiDummy
impl PartialOrd<ApiDummy> for ApiDummy
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more