Struct primitive_types::H768

source ·
#[repr(C)]
pub struct H768(pub [u8; 96]);
Expand description

Fixed-size uninterpreted hash type with 96 bytes (768 bits) size.

Tuple Fields§

§0: [u8; 96]

Implementations§

source§

impl H768

source

pub const fn repeat_byte(byte: u8) -> H768

Returns a new fixed hash where all bits are set to the given byte.

source

pub const fn zero() -> H768

Returns a new zero-initialized fixed hash.

source

pub const fn len_bytes() -> usize

Returns the size of this hash in bytes.

source

pub fn as_bytes(&self) -> &[u8]

Extracts a byte slice containing the entire fixed hash.

source

pub fn as_bytes_mut(&mut self) -> &mut [u8]

Extracts a mutable byte slice containing the entire fixed hash.

source

pub const fn as_fixed_bytes(&self) -> &[u8; 96]

Extracts a reference to the byte array containing the entire fixed hash.

source

pub fn as_fixed_bytes_mut(&mut self) -> &mut [u8; 96]

Extracts a reference to the byte array containing the entire fixed hash.

source

pub const fn to_fixed_bytes(self) -> [u8; 96]

Returns the inner bytes array.

source

pub fn as_ptr(&self) -> *const u8

Returns a constant raw pointer to the value.

source

pub fn as_mut_ptr(&mut self) -> *mut u8

Returns a mutable raw pointer to the value.

source

pub fn assign_from_slice(&mut self, src: &[u8])

Assign the bytes from the byte slice src to self.

Note

The given bytes are interpreted in big endian order.

Panics

If the length of src and the number of bytes in self do not match.

source

pub fn from_slice(src: &[u8]) -> Self

Create a new fixed-hash from the given slice src.

Note

The given bytes are interpreted in big endian order.

Panics

If the length of src and the number of bytes in Self do not match.

source

pub fn covers(&self, b: &Self) -> bool

Returns true if all bits set in b are also set in self.

source

pub fn is_zero(&self) -> bool

Returns true if no bits are set.

source§

impl H768

Utilities using the byteorder crate.

source

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.

source

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.

source

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.

source

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.
source

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.
source

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 H768

Utilities using the rand crate.

source

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.

source

pub fn randomize(&mut self)

Assign self to a cryptographically random value.

source

pub fn random_using<R>(rng: &mut R) -> Self
where R: Rng + ?Sized,

Create a new hash with cryptographically random content using the given random number generator.

source

pub fn random() -> Self

Create a new hash with cryptographically random content.

Trait Implementations§

source§

impl AsMut<[u8]> for H768

source§

fn as_mut(&mut self) -> &mut [u8]

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsRef<[u8]> for H768

source§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'l, 'r> BitAnd<&'r H768> for &'l H768

§

type Output = H768

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'r H768) -> Self::Output

Performs the & operation. Read more
source§

impl BitAnd for H768

§

type Output = H768

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self::Output

Performs the & operation. Read more
source§

impl<'r> BitAndAssign<&'r H768> for H768

source§

fn bitand_assign(&mut self, rhs: &'r H768)

Performs the &= operation. Read more
source§

impl BitAndAssign for H768

source§

fn bitand_assign(&mut self, rhs: H768)

Performs the &= operation. Read more
source§

impl<'l, 'r> BitOr<&'r H768> for &'l H768

§

type Output = H768

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'r H768) -> Self::Output

Performs the | operation. Read more
source§

impl BitOr for H768

§

type Output = H768

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self::Output

Performs the | operation. Read more
source§

impl<'r> BitOrAssign<&'r H768> for H768

source§

fn bitor_assign(&mut self, rhs: &'r H768)

Performs the |= operation. Read more
source§

impl BitOrAssign for H768

source§

fn bitor_assign(&mut self, rhs: H768)

Performs the |= operation. Read more
source§

impl<'l, 'r> BitXor<&'r H768> for &'l H768

§

type Output = H768

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'r H768) -> Self::Output

Performs the ^ operation. Read more
source§

impl BitXor for H768

§

type Output = H768

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'r> BitXorAssign<&'r H768> for H768

source§

fn bitxor_assign(&mut self, rhs: &'r H768)

Performs the ^= operation. Read more
source§

impl BitXorAssign for H768

source§

fn bitxor_assign(&mut self, rhs: H768)

Performs the ^= operation. Read more
source§

impl Clone for H768

source§

fn clone(&self) -> H768

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for H768

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for H768

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for H768

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Distribution<H768> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> H768

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>
where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>
where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl<'a> From<&'a [u8; 96]> for H768

source§

fn from(bytes: &'a [u8; 96]) -> Self

Constructs a hash type from the given reference to the bytes array of fixed length.

Note

The given bytes are interpreted in big endian order.

source§

impl<'a> From<&'a mut [u8; 96]> for H768

source§

fn from(bytes: &'a mut [u8; 96]) -> Self

Constructs a hash type from the given reference to the mutable bytes array of fixed length.

Note

The given bytes are interpreted in big endian order.

source§

impl From<[u8; 96]> for H768

source§

fn from(bytes: [u8; 96]) -> Self

Constructs a hash type from the given bytes array of fixed length.

Note

The given bytes are interpreted in big endian order.

source§

impl From<H768> for [u8; 96]

source§

fn from(s: H768) -> Self

Converts to this type from the input type.
source§

impl FromStr for H768

source§

fn from_str(input: &str) -> Result<H768, FromHexError>

Creates a hash type instance from the given string.

Note

The given input string is interpreted in big endian.

Errors
  • When encountering invalid non hex-digits
  • Upon empty string input or invalid input length in general
§

type Err = FromHexError

The associated error which can be returned from parsing.
source§

impl Hash for H768

source§

fn hash<H>(&self, state: &mut H)
where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<I> Index<I> for H768
where I: SliceIndex<[u8]>,

§

type Output = <I as SliceIndex<[u8]>>::Output

The returned type after indexing.
source§

fn index(&self, index: I) -> &I::Output

Performs the indexing (container[index]) operation. Read more
source§

impl<I> IndexMut<I> for H768
where I: SliceIndex<[u8], Output = [u8]>,

source§

fn index_mut(&mut self, index: I) -> &mut I::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl LowerHex for H768

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.
source§

impl Ord for H768

source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for H768

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for H768

source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl UpperHex for H768

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.
source§

impl Copy for H768

source§

impl Eq for H768

Auto Trait Implementations§

§

impl RefUnwindSafe for H768

§

impl Send for H768

§

impl Sync for H768

§

impl Unpin for H768

§

impl UnwindSafe for H768

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToHex for T
where T: AsRef<[u8]>,

source§

fn encode_hex<U>(&self) -> U
where U: FromIterator<char>,

Encode the hex strict representing self into the result. Lower case letters are used (e.g. f9b4ca)
source§

fn encode_hex_upper<U>(&self) -> U
where U: FromIterator<char>,

Encode the hex strict representing self into the result. Upper case letters are used (e.g. F9B4CA)
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V