pub enum NodeResponse {
Block(Block),
UtreexoBlock(UtreexoBlock),
MempoolTransaction(Transaction),
GetPeerInfo(Vec<PeerInfo>),
Connect(bool),
}
Variants§
Block(Block)
UtreexoBlock(UtreexoBlock)
MempoolTransaction(Transaction)
GetPeerInfo(Vec<PeerInfo>)
Connect(bool)
Trait Implementations§
source§impl Clone for NodeResponse
impl Clone for NodeResponse
source§fn clone(&self) -> NodeResponse
fn clone(&self) -> NodeResponse
Returns a copy 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 RefUnwindSafe for NodeResponse
impl Send for NodeResponse
impl Sync for NodeResponse
impl Unpin for NodeResponse
impl UnwindSafe for NodeResponse
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