pub enum ChannelWireTxError {
ChannelClosed,
}Expand description
A wire tx error
Variants§
ChannelClosed
The receiver closed the channel
Trait Implementations§
Source§impl AsWireTxErrorKind for ChannelWireTxError
impl AsWireTxErrorKind for ChannelWireTxError
Source§fn as_kind(&self) -> WireTxErrorKind
fn as_kind(&self) -> WireTxErrorKind
Convert the error type into a base type
Source§impl Debug for ChannelWireTxError
impl Debug for ChannelWireTxError
Source§impl Display for ChannelWireTxError
impl Display for ChannelWireTxError
Source§impl Error for ChannelWireTxError
impl Error for ChannelWireTxError
1.30.0 · 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 ChannelWireTxError
impl RefUnwindSafe for ChannelWireTxError
impl Send for ChannelWireTxError
impl Sync for ChannelWireTxError
impl Unpin for ChannelWireTxError
impl UnwindSafe for ChannelWireTxError
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