pub struct Unbound(/* private fields */);
Expand description
Authorizing data for a transparent bundle in a transaction that is just missing binding signatures.
Trait Implementations§
Source§impl TransparentAuthorizingContext for Unbound
impl TransparentAuthorizingContext for Unbound
Source§fn input_amounts(&self) -> Vec<Zatoshis>
fn input_amounts(&self) -> Vec<Zatoshis>
Returns the list of all transparent input amounts, provided
so that wallets can commit to the transparent input breakdown
without requiring the full data of the previous transactions
providing these inputs.
Source§fn input_scriptpubkeys(&self) -> Vec<Script>
fn input_scriptpubkeys(&self) -> Vec<Script>
Returns the list of all transparent input scriptPubKeys, provided
so that wallets can commit to the transparent input breakdown
without requiring the full data of the previous transactions
providing these inputs.
Auto Trait Implementations§
impl Freeze for Unbound
impl RefUnwindSafe for Unbound
impl Send for Unbound
impl Sync for Unbound
impl Unpin for Unbound
impl UnwindSafe for Unbound
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more