pub struct EffectsOnly { /* private fields */ }
Expand description
Marker type for a bundle that contains no authorizing data, and the necessary input information for creating sighashes.
Trait Implementations§
Source§impl Authorization for EffectsOnly
impl Authorization for EffectsOnly
Source§impl Debug for EffectsOnly
impl Debug for EffectsOnly
Source§impl TransparentAuthorizingContext for EffectsOnly
impl TransparentAuthorizingContext for EffectsOnly
Source§fn input_amounts(&self) -> Vec<NonNegativeAmount>
fn input_amounts(&self) -> Vec<NonNegativeAmount>
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 EffectsOnly
impl RefUnwindSafe for EffectsOnly
impl Send for EffectsOnly
impl Sync for EffectsOnly
impl Unpin for EffectsOnly
impl UnwindSafe for EffectsOnly
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