Enum miniscript::policy::concrete::PolicyError
source · pub enum PolicyError {
NonBinaryArgAnd,
NonBinaryArgOr,
InsufficientArgsforAnd,
InsufficientArgsforOr,
EntailmentMaxTerminals,
HeightTimelockCombination,
DuplicatePubKeys,
}
Expand description
Detailed error type for concrete policies.
Variants§
NonBinaryArgAnd
And
fragments only support two args.
NonBinaryArgOr
Or
fragments only support two args.
InsufficientArgsforAnd
Semantic Policy Error: And
Or
fragments must take args: k > 1
.
InsufficientArgsforOr
Semantic policy error: And
Or
fragments must take args: k > 1
.
EntailmentMaxTerminals
Entailment max terminals exceeded.
HeightTimelockCombination
Cannot lift policies that have a combination of height and timelocks.
DuplicatePubKeys
Duplicate Public Keys.
Trait Implementations§
source§impl Clone for PolicyError
impl Clone for PolicyError
source§fn clone(&self) -> PolicyError
fn clone(&self) -> PolicyError
Returns a copy 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 PolicyError
impl Debug for PolicyError
source§impl Display for PolicyError
impl Display for PolicyError
source§impl Error for PolicyError
impl Error for PolicyError
source§fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
1.30.0 · 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 Hash for PolicyError
impl Hash for PolicyError
source§impl PartialEq<PolicyError> for PolicyError
impl PartialEq<PolicyError> for PolicyError
source§fn eq(&self, other: &PolicyError) -> bool
fn eq(&self, other: &PolicyError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for PolicyError
impl Eq for PolicyError
impl StructuralEq for PolicyError
impl StructuralPartialEq for PolicyError
Auto Trait Implementations§
impl RefUnwindSafe for PolicyError
impl Send for PolicyError
impl Sync for PolicyError
impl Unpin for PolicyError
impl UnwindSafe for PolicyError
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