pub struct TransactionDecoderError(/* private fields */);Expand description
An error consensus decoding a Transaction.
Trait Implementations§
Source§impl Clone for TransactionDecoderError
impl Clone for TransactionDecoderError
Source§fn clone(&self) -> TransactionDecoderError
fn clone(&self) -> TransactionDecoderError
Returns a duplicate 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 TransactionDecoderError
impl Debug for TransactionDecoderError
Source§impl Display for TransactionDecoderError
Available on crate feature alloc only.
impl Display for TransactionDecoderError
Available on crate feature
alloc only.Source§impl Error for TransactionDecoderError
Available on crate features std and alloc only.
impl Error for TransactionDecoderError
Available on crate features
std and alloc only.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()
Source§impl From<Infallible> for TransactionDecoderError
Available on crate feature alloc only.
impl From<Infallible> for TransactionDecoderError
Available on crate feature
alloc only.Source§fn from(never: Infallible) -> Self
fn from(never: Infallible) -> Self
Converts to this type from the input type.
Source§impl From<LockTimeDecoderError> for TransactionDecoderError
Available on crate feature alloc only.
impl From<LockTimeDecoderError> for TransactionDecoderError
Available on crate feature
alloc only.Source§fn from(e: LockTimeDecoderError) -> Self
fn from(e: LockTimeDecoderError) -> Self
Converts to this type from the input type.
Source§impl From<VecDecoderError<TxInDecoderError>> for TransactionDecoderError
Available on crate feature alloc only.
impl From<VecDecoderError<TxInDecoderError>> for TransactionDecoderError
Available on crate feature
alloc only.Source§fn from(e: VecDecoderError<TxInDecoderError>) -> Self
fn from(e: VecDecoderError<TxInDecoderError>) -> Self
Converts to this type from the input type.
Source§impl From<VecDecoderError<TxOutDecoderError>> for TransactionDecoderError
Available on crate feature alloc only.
impl From<VecDecoderError<TxOutDecoderError>> for TransactionDecoderError
Available on crate feature
alloc only.Source§fn from(e: VecDecoderError<TxOutDecoderError>) -> Self
fn from(e: VecDecoderError<TxOutDecoderError>) -> Self
Converts to this type from the input type.
Source§impl From<VersionDecoderError> for TransactionDecoderError
Available on crate feature alloc only.
impl From<VersionDecoderError> for TransactionDecoderError
Available on crate feature
alloc only.Source§fn from(e: VersionDecoderError) -> Self
fn from(e: VersionDecoderError) -> Self
Converts to this type from the input type.
Source§impl From<WitnessDecoderError> for TransactionDecoderError
Available on crate feature alloc only.
impl From<WitnessDecoderError> for TransactionDecoderError
Available on crate feature
alloc only.Source§fn from(e: WitnessDecoderError) -> Self
fn from(e: WitnessDecoderError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TransactionDecoderError
impl PartialEq for TransactionDecoderError
impl Eq for TransactionDecoderError
impl StructuralPartialEq for TransactionDecoderError
Auto Trait Implementations§
impl Freeze for TransactionDecoderError
impl RefUnwindSafe for TransactionDecoderError
impl Send for TransactionDecoderError
impl Sync for TransactionDecoderError
impl Unpin for TransactionDecoderError
impl UnsafeUnpin for TransactionDecoderError
impl UnwindSafe for TransactionDecoderError
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