pub enum P2shError {
ExcessiveScriptSize,
}
Expand description
Error while generating address from a p2sh script.
Variants§
ExcessiveScriptSize
Address size more than 520 bytes is not allowed.
Trait Implementations§
source§impl Error for P2shError
impl Error for P2shError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 P2shError
impl From<Infallible> for P2shError
source§fn from(never: Infallible) -> Self
fn from(never: Infallible) -> Self
Converts to this type from the input type.
source§impl PartialEq<P2shError> for P2shError
impl PartialEq<P2shError> for P2shError
impl Eq for P2shError
impl StructuralEq for P2shError
impl StructuralPartialEq for P2shError
Auto Trait Implementations§
impl RefUnwindSafe for P2shError
impl Send for P2shError
impl Sync for P2shError
impl Unpin for P2shError
impl UnwindSafe for P2shError
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