pub enum CoinResponse {
Status(BTreeMap<ScriptBuf, Option<String>>),
History(BTreeMap<ScriptBuf, Vec<(Txid, Option<u64>)>>),
Txs(Vec<Transaction>),
Stopped,
Error(String),
}Variants§
Status(BTreeMap<ScriptBuf, Option<String>>)
History(BTreeMap<ScriptBuf, Vec<(Txid, Option<u64>)>>)
Txs(Vec<Transaction>)
Stopped
Error(String)
Trait Implementations§
Source§impl Clone for CoinResponse
impl Clone for CoinResponse
Source§fn clone(&self) -> CoinResponse
fn clone(&self) -> CoinResponse
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 Freeze for CoinResponse
impl RefUnwindSafe for CoinResponse
impl Send for CoinResponse
impl Sync for CoinResponse
impl Unpin for CoinResponse
impl UnwindSafe for CoinResponse
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