pub enum FetchFeeRateError {
SendError,
RecvError,
}Expand description
Errors that occur when fetching the minimum fee rate to broadcast a transaction.
Variants§
SendError
The channel to the node was likely closed and dropped from memory. This implies the node is not running.
RecvError
The channel to the client was likely closed by the node and dropped from memory.
Trait Implementations§
Source§impl Debug for FetchFeeRateError
impl Debug for FetchFeeRateError
Source§impl Display for FetchFeeRateError
impl Display for FetchFeeRateError
Source§impl Error for FetchFeeRateError
impl Error for FetchFeeRateError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for FetchFeeRateError
impl RefUnwindSafe for FetchFeeRateError
impl Send for FetchFeeRateError
impl Sync for FetchFeeRateError
impl Unpin for FetchFeeRateError
impl UnwindSafe for FetchFeeRateError
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