Enum bitcoin::p2p::message_network::RejectReason
source · pub enum RejectReason {
Malformed,
Invalid,
Obsolete,
Duplicate,
NonStandard,
Dust,
Fee,
Checkpoint,
}
Expand description
message rejection reason as a code
Variants§
Malformed
malformed message
Invalid
invalid message
Obsolete
obsolete message
Duplicate
duplicate message
NonStandard
nonstandard transaction
Dust
an output is below dust limit
Fee
insufficient fee
Checkpoint
checkpoint
Trait Implementations§
source§impl Clone for RejectReason
impl Clone for RejectReason
source§fn clone(&self) -> RejectReason
fn clone(&self) -> RejectReason
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 moresource§impl Debug for RejectReason
impl Debug for RejectReason
source§impl Decodable for RejectReason
impl Decodable for RejectReason
source§impl Encodable for RejectReason
impl Encodable for RejectReason
source§impl PartialEq<RejectReason> for RejectReason
impl PartialEq<RejectReason> for RejectReason
source§fn eq(&self, other: &RejectReason) -> bool
fn eq(&self, other: &RejectReason) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for RejectReason
impl Eq for RejectReason
impl StructuralEq for RejectReason
impl StructuralPartialEq for RejectReason
Auto Trait Implementations§
impl RefUnwindSafe for RejectReason
impl Send for RejectReason
impl Sync for RejectReason
impl Unpin for RejectReason
impl UnwindSafe for RejectReason
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