pub struct CosignRequest<V> {
pub user_pub_nonces: Vec<PublicNonce>,
pub input: V,
pub outputs: Vec<VtxoRequest>,
pub dust_outputs: Vec<VtxoRequest>,
pub use_checkpoint: bool,
}Fields§
§user_pub_nonces: Vec<PublicNonce>§input: V§outputs: Vec<VtxoRequest>§dust_outputs: Vec<VtxoRequest>§use_checkpoint: boolImplementations§
Source§impl<V> CosignRequest<V>
impl<V> CosignRequest<V>
pub fn new( user_pub_nonces: Vec<PublicNonce>, input: V, outputs: Vec<VtxoRequest>, dust_outputs: Vec<VtxoRequest>, use_checkpoint: bool, ) -> Self
Trait Implementations§
Source§impl<V: Clone> Clone for CosignRequest<V>
impl<V: Clone> Clone for CosignRequest<V>
Source§fn clone(&self) -> CosignRequest<V>
fn clone(&self) -> CosignRequest<V>
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<V: Debug> Debug for CosignRequest<V>
impl<V: Debug> Debug for CosignRequest<V>
Source§impl<V: PartialEq> PartialEq for CosignRequest<V>
impl<V: PartialEq> PartialEq for CosignRequest<V>
impl<V: Eq> Eq for CosignRequest<V>
impl<V> StructuralPartialEq for CosignRequest<V>
Auto Trait Implementations§
impl<V> Freeze for CosignRequest<V>where
V: Freeze,
impl<V> RefUnwindSafe for CosignRequest<V>where
V: RefUnwindSafe,
impl<V> Send for CosignRequest<V>where
V: Send,
impl<V> Sync for CosignRequest<V>where
V: Sync,
impl<V> Unpin for CosignRequest<V>where
V: Unpin,
impl<V> UnwindSafe for CosignRequest<V>where
V: UnwindSafe,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.