Struct ethereum_types::H264
source · Tuple Fields§
§0: [u8; 33]
Implementations§
source§impl H264
impl H264
sourcepub const fn repeat_byte(byte: u8) -> H264
pub const fn repeat_byte(byte: u8) -> H264
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; 33]
pub const fn as_fixed_bytes(&self) -> &[u8; 33]
Extracts a reference to the byte array containing the entire fixed hash.
sourcepub fn as_fixed_bytes_mut(&mut self) -> &mut [u8; 33]
pub fn as_fixed_bytes_mut(&mut self) -> &mut [u8; 33]
Extracts a reference to the byte array containing the entire fixed hash.
sourcepub const fn to_fixed_bytes(self) -> [u8; 33]
pub const fn to_fixed_bytes(self) -> [u8; 33]
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 H264
impl H264
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 H264
impl H264
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§
source§impl<'r> BitAndAssign<&'r H264> for H264
impl<'r> BitAndAssign<&'r H264> for H264
source§fn bitand_assign(&mut self, rhs: &'r H264)
fn bitand_assign(&mut self, rhs: &'r H264)
&=
operation. Read moresource§impl BitAndAssign<H264> for H264
impl BitAndAssign<H264> for H264
source§fn bitand_assign(&mut self, rhs: H264)
fn bitand_assign(&mut self, rhs: H264)
&=
operation. Read moresource§impl<'r> BitOrAssign<&'r H264> for H264
impl<'r> BitOrAssign<&'r H264> for H264
source§fn bitor_assign(&mut self, rhs: &'r H264)
fn bitor_assign(&mut self, rhs: &'r H264)
|=
operation. Read moresource§impl BitOrAssign<H264> for H264
impl BitOrAssign<H264> for H264
source§fn bitor_assign(&mut self, rhs: H264)
fn bitor_assign(&mut self, rhs: H264)
|=
operation. Read moresource§impl<'r> BitXorAssign<&'r H264> for H264
impl<'r> BitXorAssign<&'r H264> for H264
source§fn bitxor_assign(&mut self, rhs: &'r H264)
fn bitxor_assign(&mut self, rhs: &'r H264)
^=
operation. Read moresource§impl BitXorAssign<H264> for H264
impl BitXorAssign<H264> for H264
source§fn bitxor_assign(&mut self, rhs: H264)
fn bitxor_assign(&mut self, rhs: H264)
^=
operation. Read moresource§impl<'de> Deserialize<'de> for H264
impl<'de> Deserialize<'de> for H264
source§fn 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>,
source§impl Distribution<H264> for Standard
impl Distribution<H264> for Standard
source§fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> H264
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> H264
T
, using rng
as the source of randomness.source§impl Encodable for H264
impl Encodable for H264
source§fn rlp_append(&self, s: &mut RlpStream)
fn rlp_append(&self, s: &mut RlpStream)
source§impl Ord for H264
impl Ord for H264
source§impl PartialOrd<H264> for H264
impl PartialOrd<H264> for H264
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moreimpl Copy for H264
impl Eq for H264
Auto Trait Implementations§
impl RefUnwindSafe for H264
impl Send for H264
impl Sync for H264
impl Unpin for H264
impl UnwindSafe for H264
Blanket Implementations§
source§impl<T> ToHex for Twhere
T: AsRef<[u8]>,
impl<T> ToHex for Twhere
T: AsRef<[u8]>,
source§fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
self
into the result. Lower case
letters are used (e.g. f9b4ca
) Read moresource§fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
self
into the result. Upper case
letters are used (e.g. F9B4CA
) Read more