brk_types 0.2.4

Structs used throughout BRK
Documentation
1
2
3
4
5
6
7
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

/// Hex-encoded string
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
#[serde(transparent)]
pub struct Hex(String);