#[non_exhaustive]pub enum P2shError {
ExcessiveScriptSize,
}
Expand description
Error while generating address from a p2sh script.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ExcessiveScriptSize
Address size more than 520 bytes is not allowed.
Trait Implementations§
source§impl Error for P2shError
Available on crate feature std
only.
impl Error for P2shError
Available on crate feature
std
only.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 for P2shError
impl PartialEq for P2shError
impl Eq for P2shError
impl StructuralPartialEq for P2shError
Auto Trait Implementations§
impl Freeze for P2shError
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)