pub enum CoinSelectionDto {
Specific {
coins: Vec<String>,
},
All,
}Variants§
Trait Implementations§
Source§impl Clone for CoinSelectionDto
impl Clone for CoinSelectionDto
Source§fn clone(&self) -> CoinSelectionDto
fn clone(&self) -> CoinSelectionDto
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CoinSelectionDto
impl Debug for CoinSelectionDto
Source§impl Default for CoinSelectionDto
impl Default for CoinSelectionDto
Source§impl<'de> Deserialize<'de> for CoinSelectionDto
impl<'de> Deserialize<'de> for CoinSelectionDto
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 PartialEq for CoinSelectionDto
impl PartialEq for CoinSelectionDto
Source§fn eq(&self, other: &CoinSelectionDto) -> bool
fn eq(&self, other: &CoinSelectionDto) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CoinSelectionDto
impl Serialize for CoinSelectionDto
impl StructuralPartialEq for CoinSelectionDto
Auto Trait Implementations§
impl Freeze for CoinSelectionDto
impl RefUnwindSafe for CoinSelectionDto
impl Send for CoinSelectionDto
impl Sync for CoinSelectionDto
impl Unpin for CoinSelectionDto
impl UnsafeUnpin for CoinSelectionDto
impl UnwindSafe for CoinSelectionDto
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