#[repr(C)]pub struct ApiDummy(pub [u8; 32]);
Expand description
Go here for an overview of the hash type API.
Tuple Fields§
§0: [u8; 32]
Implementations§
Source§impl 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_mut(&mut self) -> &mut [u8] ⓘ
pub fn as_bytes_mut(&mut self) -> &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
Source§impl ApiDummy
Utilities using the byteorder
crate.
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.
Source§impl ApiDummy
Utilities using the rand
crate.
impl ApiDummy
Utilities using the rand
crate.
Sourcepub fn randomize_using<R>(&mut self, rng: &mut R)
pub fn randomize_using<R>(&mut self, rng: &mut R)
Assign self
to a cryptographically random value using the
given random number generator.
Sourcepub fn random_using<R>(rng: &mut R) -> Self
pub fn random_using<R>(rng: &mut R) -> Self
Create a new hash with cryptographically random content using the given random number generator.
Trait Implementations§
Source§impl<'r> BitAndAssign<&'r ApiDummy> for ApiDummy
impl<'r> BitAndAssign<&'r ApiDummy> for ApiDummy
Source§fn bitand_assign(&mut self, rhs: &'r ApiDummy)
fn bitand_assign(&mut self, rhs: &'r ApiDummy)
&=
operation. Read moreSource§impl BitAndAssign for ApiDummy
impl BitAndAssign for ApiDummy
Source§fn bitand_assign(&mut self, rhs: ApiDummy)
fn bitand_assign(&mut self, rhs: ApiDummy)
&=
operation. Read moreSource§impl<'r> BitOrAssign<&'r ApiDummy> for ApiDummy
impl<'r> BitOrAssign<&'r ApiDummy> for ApiDummy
Source§fn bitor_assign(&mut self, rhs: &'r ApiDummy)
fn bitor_assign(&mut self, rhs: &'r ApiDummy)
|=
operation. Read moreSource§impl BitOrAssign for ApiDummy
impl BitOrAssign for ApiDummy
Source§fn bitor_assign(&mut self, rhs: ApiDummy)
fn bitor_assign(&mut self, rhs: ApiDummy)
|=
operation. Read moreSource§impl<'r> BitXorAssign<&'r ApiDummy> for ApiDummy
impl<'r> BitXorAssign<&'r ApiDummy> for ApiDummy
Source§fn bitxor_assign(&mut self, rhs: &'r ApiDummy)
fn bitxor_assign(&mut self, rhs: &'r ApiDummy)
^=
operation. Read moreSource§impl BitXorAssign for ApiDummy
impl BitXorAssign for ApiDummy
Source§fn bitxor_assign(&mut self, rhs: ApiDummy)
fn bitxor_assign(&mut self, rhs: ApiDummy)
^=
operation. Read more