#[repr(C)]pub struct evmc_bytes32 {
pub bytes: [u8; 32],
}Expand description
The fixed size array of 32 bytes.
32 bytes of data capable of storing e.g. 256-bit hashes.
Fields§
§bytes: [u8; 32]The 32 bytes.
Trait Implementations§
Source§impl Clone for evmc_bytes32
impl Clone for evmc_bytes32
Source§fn clone(&self) -> evmc_bytes32
fn clone(&self) -> evmc_bytes32
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for evmc_bytes32
impl Debug for evmc_bytes32
Source§impl Default for evmc_bytes32
impl Default for evmc_bytes32
Source§impl Hash for evmc_bytes32
impl Hash for evmc_bytes32
Source§impl PartialEq for evmc_bytes32
impl PartialEq for evmc_bytes32
impl Copy for evmc_bytes32
impl StructuralPartialEq for evmc_bytes32
Auto Trait Implementations§
impl Freeze for evmc_bytes32
impl RefUnwindSafe for evmc_bytes32
impl Send for evmc_bytes32
impl Sync for evmc_bytes32
impl Unpin for evmc_bytes32
impl UnwindSafe for evmc_bytes32
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more