pub struct ArkoorPackageCosignRequest<V> {
pub requests: Vec<ArkoorCosignRequest<V>>,
}Fields§
§requests: Vec<ArkoorCosignRequest<V>>Implementations§
Source§impl<V> ArkoorPackageCosignRequest<V>
impl<V> ArkoorPackageCosignRequest<V>
pub fn convert_vtxo<F, O>(self, f: F) -> ArkoorPackageCosignRequest<O>where
F: FnMut(V) -> O,
pub fn inputs(&self) -> impl Iterator<Item = &V>
pub fn all_outputs(&self) -> impl Iterator<Item = &ArkoorDestination> + Clone
Source§impl ArkoorPackageCosignRequest<VtxoId>
impl ArkoorPackageCosignRequest<VtxoId>
pub fn set_vtxos( self, vtxos: impl IntoIterator<Item = Vtxo<Full>>, ) -> Result<ArkoorPackageCosignRequest<Vtxo<Full>>, InputMismatchError>
Trait Implementations§
Source§impl<V: Clone> Clone for ArkoorPackageCosignRequest<V>
impl<V: Clone> Clone for ArkoorPackageCosignRequest<V>
Source§fn clone(&self) -> ArkoorPackageCosignRequest<V>
fn clone(&self) -> ArkoorPackageCosignRequest<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 moreAuto Trait Implementations§
impl<V> Freeze for ArkoorPackageCosignRequest<V>
impl<V> RefUnwindSafe for ArkoorPackageCosignRequest<V>where
V: RefUnwindSafe,
impl<V> Send for ArkoorPackageCosignRequest<V>where
V: Send,
impl<V> Sync for ArkoorPackageCosignRequest<V>where
V: Sync,
impl<V> Unpin for ArkoorPackageCosignRequest<V>where
V: Unpin,
impl<V> UnwindSafe for ArkoorPackageCosignRequest<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