Trait bitcoin::util::psbt::Map [−][src]
pub trait Map {
fn insert_pair(&mut self, pair: Pair) -> Result<(), Error>;
fn get_pairs(&self) -> Result<Vec<Pair>, Error>;
fn merge(&mut self, other: Self) -> Result<(), Error>;
}
Expand description
A trait that describes a PSBT key-value map.