pub enum PendingConversionError {
MissingSignature,
}Expand description
Reasons a Message cannot be converted into a PendingMessage for re-submission.
Variants§
MissingSignature
The message has no signature (legacy null-signature mainnet data). Such messages cannot be re-posted: the target node would reject them.
Trait Implementations§
Source§impl Debug for PendingConversionError
impl Debug for PendingConversionError
Source§impl Display for PendingConversionError
impl Display for PendingConversionError
Source§impl Error for PendingConversionError
impl Error for PendingConversionError
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 PendingConversionError
impl RefUnwindSafe for PendingConversionError
impl Send for PendingConversionError
impl Sync for PendingConversionError
impl Unpin for PendingConversionError
impl UnsafeUnpin for PendingConversionError
impl UnwindSafe for PendingConversionError
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