pub struct Pair {
pub key: Key,
pub value: Vec<u8>,
}
Expand description
A PSBT key-value pair in its raw byte form.
Fields§
§key: Key
The key of this key-value pair.
value: Vec<u8>
The value of this key-value pair in raw byte form.
Trait Implementations§
impl StructuralPartialEq for Pair
Auto Trait Implementations§
impl Freeze for Pair
impl RefUnwindSafe for Pair
impl Send for Pair
impl Sync for Pair
impl Unpin for Pair
impl UnwindSafe for Pair
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