pub struct ArkoorDestination {
pub total_amount: Amount,
pub policy: VtxoPolicy,
}Expand description
The destination of an arkoor pacakage
Because arkoor does not allow multiple inputs, often the destinations are broken up into multiple VTXOs with the same policy.
Fields§
§total_amount: Amount§policy: VtxoPolicyTrait Implementations§
Source§impl Clone for ArkoorDestination
impl Clone for ArkoorDestination
Source§fn clone(&self) -> ArkoorDestination
fn clone(&self) -> ArkoorDestination
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 ArkoorDestination
impl Debug for ArkoorDestination
Source§impl<'de> Deserialize<'de> for ArkoorDestination
impl<'de> Deserialize<'de> for ArkoorDestination
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for ArkoorDestination
impl Hash for ArkoorDestination
Source§impl Ord for ArkoorDestination
impl Ord for ArkoorDestination
Source§fn cmp(&self, other: &ArkoorDestination) -> Ordering
fn cmp(&self, other: &ArkoorDestination) -> 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 ArkoorDestination
impl PartialEq for ArkoorDestination
Source§impl PartialOrd for ArkoorDestination
impl PartialOrd for ArkoorDestination
Source§impl Serialize for ArkoorDestination
impl Serialize for ArkoorDestination
impl Eq for ArkoorDestination
impl StructuralPartialEq for ArkoorDestination
Auto Trait Implementations§
impl Freeze for ArkoorDestination
impl RefUnwindSafe for ArkoorDestination
impl Send for ArkoorDestination
impl Sync for ArkoorDestination
impl Unpin for ArkoorDestination
impl UnsafeUnpin for ArkoorDestination
impl UnwindSafe for ArkoorDestination
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