pub type U256<'a> = Inner<'a, true, 32, 0, 0>;
Expand description
Type alias for a 32-byte slice or owned data (commonly used for cryptographic
hashes or IDs) represented using the Inner
type with fixed-size configuration.
Aliased Type§
#[repr(C)]pub enum U256<'a> {
Ref(&'a mut [u8]),
Owned(Vec<u8>),
}