pub struct H2048(pub [u8; 256]);
Expand description

Bloom hash type with 256 bytes (2048 bits) size.

Tuple Fields§

§0: [u8; 256]

Implementations§

§

impl Bloom

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

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

pub const fn zero() -> Bloom

Returns a new zero-initialized fixed hash.

pub const fn len_bytes() -> usize

Returns the size of this hash in bytes.

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

Extracts a byte slice containing the entire fixed hash.

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

Extracts a mutable byte slice containing the entire fixed hash.

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

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

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

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

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

Returns the inner bytes array.

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

Returns a constant raw pointer to the value.

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

Returns a mutable raw pointer to the value.

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.

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

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.

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

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

pub fn is_zero(&self) -> bool

Returns true if no bits are set.

§

impl Bloom

Utilities using the byteorder crate.

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.

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.

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.

pub fn from_low_u64_be(val: u64) -> Bloom

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.

pub fn from_low_u64_le(val: u64) -> Bloom

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.

pub fn from_low_u64_ne(val: u64) -> Bloom

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

impl Bloom

Utilities using the rand crate.

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.

pub fn randomize(&mut self)

Assign self to a cryptographically random value.

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

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

pub fn random() -> Bloom

Create a new hash with cryptographically random content.

§

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) -> boolwhere
    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§

§

impl AsMut<[u8]> for Bloom

§

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

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

impl AsRef<[u8]> for Bloom

§

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

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

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

§

type Output = Bloom

The resulting type after applying the & operator.
§

fn bitand(self, rhs: &'r Bloom) -> <&'l Bloom as BitAnd<&'r Bloom>>::Output

Performs the & operation. Read more
§

impl BitAnd<Bloom> for Bloom

§

type Output = Bloom

The resulting type after applying the & operator.
§

fn bitand(self, rhs: Bloom) -> <Bloom as BitAnd<Bloom>>::Output

Performs the & operation. Read more
§

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

§

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

Performs the &= operation. Read more
§

impl BitAndAssign<Bloom> for Bloom

§

fn bitand_assign(&mut self, rhs: Bloom)

Performs the &= operation. Read more
§

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

§

type Output = Bloom

The resulting type after applying the | operator.
§

fn bitor(self, rhs: &'r Bloom) -> <&'l Bloom as BitOr<&'r Bloom>>::Output

Performs the | operation. Read more
§

impl BitOr<Bloom> for Bloom

§

type Output = Bloom

The resulting type after applying the | operator.
§

fn bitor(self, rhs: Bloom) -> <Bloom as BitOr<Bloom>>::Output

Performs the | operation. Read more
§

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

§

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

Performs the |= operation. Read more
§

impl BitOrAssign<Bloom> for Bloom

§

fn bitor_assign(&mut self, rhs: Bloom)

Performs the |= operation. Read more
§

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

§

type Output = Bloom

The resulting type after applying the ^ operator.
§

fn bitxor(self, rhs: &'r Bloom) -> <&'l Bloom as BitXor<&'r Bloom>>::Output

Performs the ^ operation. Read more
§

impl BitXor<Bloom> for Bloom

§

type Output = Bloom

The resulting type after applying the ^ operator.
§

fn bitxor(self, rhs: Bloom) -> <Bloom as BitXor<Bloom>>::Output

Performs the ^ operation. Read more
§

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

§

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

Performs the ^= operation. Read more
§

impl BitXorAssign<Bloom> for Bloom

§

fn bitxor_assign(&mut self, rhs: Bloom)

Performs the ^= operation. Read more
§

impl Clone for Bloom

§

fn clone(&self) -> Bloom

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
§

impl Debug for Bloom

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Bloom

§

fn decode(rlp: &Rlp<'_>) -> Result<Bloom, DecoderError>

Decode a value from RLP bytes
§

impl Default for Bloom

§

fn default() -> Bloom

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

impl<'de> Deserialize<'de> for Bloom

§

fn deserialize<D>(
    deserializer: D
) -> Result<Bloom, <D as Deserializer<'de>>::Error>where
    D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Bloom

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for Bloom

§

fn rlp_append(&self, s: &mut RlpStream)

Append a value to the stream
§

fn rlp_bytes(&self) -> BytesMut

Get rlp-encoded bytes for this instance
§

impl<'a> From<&'a [u8; 256]> for Bloom

§

fn from(bytes: &'a [u8; 256]) -> Bloom

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.

§

impl<'a> From<&'a mut [u8; 256]> for Bloom

§

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

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.

§

impl From<[u8; 256]> for Bloom

§

fn from(bytes: [u8; 256]) -> Bloom

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

Note

The given bytes are interpreted in big endian order.

§

impl<'a> From<Input<'a>> for Bloom

§

fn from(input: Input<'a>) -> Bloom

Converts to this type from the input type.
§

impl FromStr for Bloom

§

fn from_str(input: &str) -> Result<Bloom, 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.
§

impl Hash for Bloom

§

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
§

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

§

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

The returned type after indexing.
§

fn index(&self, index: I) -> &<I as SliceIndex<[u8]>>::Output

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

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

§

fn index_mut(&mut self, index: I) -> &mut <I as SliceIndex<[u8]>>::Output

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

impl LowerHex for Bloom

§

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

Formats the value using the given formatter.
§

impl Ord for Bloom

§

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

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

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

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

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

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

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

Restrict a value to a certain interval. Read more
§

impl PartialEq<Bloom> for Bloom

§

fn eq(&self, other: &Bloom) -> 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.
§

impl<'a> PartialEq<BloomRef<'a>> for Bloom

§

fn eq(&self, other: &BloomRef<'a>) -> 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.
§

impl PartialOrd<Bloom> for Bloom

§

fn partial_cmp(&self, other: &Bloom) -> 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
§

impl Serialize for Bloom

§

fn serialize<S>(
    &self,
    serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
    S: Serializer,

Serialize this value into the given Serde serializer. Read more
§

impl UpperHex for Bloom

§

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

Formats the value using the given formatter.
§

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§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T, U> AsByteSlice<T> for Uwhere
    T: ToByteSlice,
    U: AsRef<[T]> + ?Sized,

§

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

§

impl<T, U> AsMutByteSlice<T> for Uwhere
    T: ToMutByteSlice,
    U: AsMut<[T]> + ?Sized,

§

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

§

impl<U> AsMutSliceOf for Uwhere
    U: AsMut<[u8]> + ?Sized,

§

fn as_mut_slice_of<T>(&mut self) -> Result<&mut [T], Error>where
    T: FromByteSlice,

§

impl<U> AsSliceOf for Uwhere
    U: AsRef<[u8]> + ?Sized,

§

fn as_slice_of<T>(&self) -> Result<&[T], Error>where
    T: FromByteSlice,

source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

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

const: unstable · 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> Same<T> for T

§

type Output = T

Should always be Self
source§

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

source§

fn encode_hex<U>(&self) -> Uwhere
    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) -> Uwhere
    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 Twhere
    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 Twhere
    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 Twhere
    U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
§

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

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
    S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for Twhere
    T: for<'de> Deserialize<'de>,