Trait bitcoincore_rpc::Queryable
source · [−]pub trait Queryable<C: RpcApi>: Sized {
type Id;
fn query(rpc: &C, id: &Self::Id) -> Result<Self>;
}
Expand description
A type that can be queried from Bitcoin Core.
pub trait Queryable<C: RpcApi>: Sized {
type Id;
fn query(rpc: &C, id: &Self::Id) -> Result<Self>;
}
A type that can be queried from Bitcoin Core.