Expand description
Bloom hash type with 256 bytes (2048 bits) size.
Tuple Fields
0: [u8; 256]
Implementations
sourceimpl Bloom
impl Bloom
sourcepub const fn repeat_byte(byte: u8) -> Bloom
pub const fn repeat_byte(byte: u8) -> Bloom
Returns a new fixed hash where all bits are set to the given byte.
sourcepub fn as_bytes(&self) -> &[u8]ⓘNotable traits for &'_ mut [u8]impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
pub fn as_bytes(&self) -> &[u8]ⓘNotable traits for &'_ mut [u8]impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
Extracts a byte slice containing the entire fixed hash.
sourcepub fn as_bytes_mut(&mut self) -> &mut [u8]ⓘNotable traits for &'_ mut [u8]impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
pub fn as_bytes_mut(&mut self) -> &mut [u8]ⓘNotable traits for &'_ mut [u8]impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
Extracts a mutable byte slice containing the entire fixed hash.
sourcepub const fn as_fixed_bytes(&self) -> &[u8; 256]
pub const fn as_fixed_bytes(&self) -> &[u8; 256]
Extracts a reference to the byte array containing the entire fixed hash.
sourcepub fn as_fixed_bytes_mut(&mut self) -> &mut [u8; 256]
pub fn as_fixed_bytes_mut(&mut self) -> &mut [u8; 256]
Extracts a reference to the byte array containing the entire fixed hash.
sourcepub const fn to_fixed_bytes(self) -> [u8; 256]
pub const fn to_fixed_bytes(self) -> [u8; 256]
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 Bloom
impl Bloom
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 Bloom
impl Bloom
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) -> Self where
R: Rng + ?Sized,
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.
sourceimpl Bloom
impl Bloom
pub fn is_empty(&self) -> bool
pub fn contains_input(&self, input: Input<'_>) -> bool
pub fn contains_bloom<'a, B>(&self, bloom: B) -> bool where
BloomRef<'a>: From<B>,
pub fn accrue(&mut self, input: Input<'_>)
pub fn accrue_bloom<'a, B>(&mut self, bloom: B) where
BloomRef<'a>: From<B>,
pub fn data(&self) -> &[u8; 256]
Trait Implementations
sourceimpl<'r> BitAndAssign<&'r Bloom> for Bloom
impl<'r> BitAndAssign<&'r Bloom> for Bloom
sourcefn bitand_assign(&mut self, rhs: &'r Bloom)
fn bitand_assign(&mut self, rhs: &'r Bloom)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<Bloom> for Bloom
impl BitAndAssign<Bloom> for Bloom
sourcefn bitand_assign(&mut self, rhs: Bloom)
fn bitand_assign(&mut self, rhs: Bloom)
Performs the &=
operation. Read more
sourceimpl<'r> BitOrAssign<&'r Bloom> for Bloom
impl<'r> BitOrAssign<&'r Bloom> for Bloom
sourcefn bitor_assign(&mut self, rhs: &'r Bloom)
fn bitor_assign(&mut self, rhs: &'r Bloom)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<Bloom> for Bloom
impl BitOrAssign<Bloom> for Bloom
sourcefn bitor_assign(&mut self, rhs: Bloom)
fn bitor_assign(&mut self, rhs: Bloom)
Performs the |=
operation. Read more
sourceimpl<'r> BitXorAssign<&'r Bloom> for Bloom
impl<'r> BitXorAssign<&'r Bloom> for Bloom
sourcefn bitxor_assign(&mut self, rhs: &'r Bloom)
fn bitxor_assign(&mut self, rhs: &'r Bloom)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<Bloom> for Bloom
impl BitXorAssign<Bloom> for Bloom
sourcefn bitxor_assign(&mut self, rhs: Bloom)
fn bitxor_assign(&mut self, rhs: Bloom)
Performs the ^=
operation. Read more
sourceimpl Decodable for Bloom
impl Decodable for Bloom
sourcefn decode(rlp: &Rlp<'_>) -> Result<Self, DecoderError>
fn decode(rlp: &Rlp<'_>) -> Result<Self, DecoderError>
Decode a value from RLP bytes
sourceimpl<'de> Deserialize<'de> for Bloom
impl<'de> Deserialize<'de> for Bloom
sourcefn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Distribution<Bloom> for Standard
impl Distribution<Bloom> for Standard
sourcefn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Bloom
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Bloom
Generate a random value of 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,
Create an iterator that generates random values of T
, using rng
as
the source of randomness. Read more
sourceimpl FromStr for Bloom
impl FromStr for Bloom
type Err = FromHexError
type Err = FromHexError
The associated error which can be returned from parsing.
sourceimpl Ord for Bloom
impl Ord for Bloom
sourceimpl PartialOrd<Bloom> for Bloom
impl PartialOrd<Bloom> for Bloom
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
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 · sourcefn lt(&self, other: &Rhs) -> bool
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 · sourcefn le(&self, other: &Rhs) -> bool
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
impl Copy for Bloom
impl Eq for Bloom
Auto Trait Implementations
impl RefUnwindSafe for Bloom
impl Send for Bloom
impl Sync for Bloom
impl Unpin for Bloom
impl UnwindSafe for Bloom
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more