pub struct Byte32(pub [u8; 32]);
Expand description
Fixed-length 32 bytes binary encoded as a 0x-prefixed hex string in JSON.
§Example
0xd495a106684401001e47c0ae1d5930009449d26e32380000000721efd0030000
Tuple Fields§
§0: [u8; 32]
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Byte32
impl<'de> Deserialize<'de> for Byte32
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for Byte32
impl JsonSchema for Byte32
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreimpl Eq for Byte32
impl StructuralPartialEq for Byte32
Auto Trait Implementations§
impl Freeze for Byte32
impl RefUnwindSafe for Byte32
impl Send for Byte32
impl Sync for Byte32
impl Unpin for Byte32
impl UnwindSafe for Byte32
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)