1 2 3 4 5 6 7 8 9 10
use schemars::JsonSchema; use serde::Deserialize; use brk_types::Txid; /// Transaction ID path parameter #[derive(Deserialize, JsonSchema)] pub struct TxidParam { pub txid: Txid, }