pub struct SignerOrdering(pub usize);
๐Deprecated since 2.2.0: PSBT signing was moved to
bitcoin::psbt
moduleExpand description
Defines the order in which signers are called
The default value is 100
. Signers with an ordering above that will be called later,
and they will thus see the partial signatures added to the transaction once they get to sign
themselves.
Tuple Fieldsยง
ยง0: usize
๐Deprecated since 2.2.0: PSBT signing was moved to
bitcoin::psbt
moduleTrait Implementationsยง
Sourceยงimpl Clone for SignerOrdering
impl Clone for SignerOrdering
Sourceยงfn clone(&self) -> SignerOrdering
fn clone(&self) -> SignerOrdering
Returns a duplicate of the value. Read more
1.0.0 ยท Sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSourceยงimpl Debug for SignerOrdering
impl Debug for SignerOrdering
Sourceยงimpl Default for SignerOrdering
impl Default for SignerOrdering
Sourceยงimpl Ord for SignerOrdering
impl Ord for SignerOrdering
Sourceยงfn cmp(&self, other: &SignerOrdering) -> Ordering
fn cmp(&self, other: &SignerOrdering) -> Ordering
1.21.0 ยท Sourceยงfn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Sourceยงimpl PartialEq for SignerOrdering
impl PartialEq for SignerOrdering
Sourceยงimpl PartialOrd for SignerOrdering
impl PartialOrd for SignerOrdering
impl Eq for SignerOrdering
impl StructuralPartialEq for SignerOrdering
Auto Trait Implementationsยง
impl Freeze for SignerOrdering
impl RefUnwindSafe for SignerOrdering
impl Send for SignerOrdering
impl Sync for SignerOrdering
impl Unpin for SignerOrdering
impl UnwindSafe for SignerOrdering
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