pub enum ParseOrSemanticError {
ParseError(ParseError),
SemanticError(SemanticError),
}
Expand description
Indicates that something went wrong while parsing or validating the invoice. Parsing errors should be mostly seen as opaque and are only there for debugging reasons. Semantic errors like wrong signatures, missing fields etc. could mean that someone tampered with the invoice.
Variants
ParseError(ParseError)
The invoice couldn’t be decoded
SemanticError(SemanticError)
The invoice could be decoded but violates the BOLT11 standard
Trait Implementations
sourceimpl Clone for ParseOrSemanticError
impl Clone for ParseOrSemanticError
sourcefn clone(&self) -> ParseOrSemanticError
fn clone(&self) -> ParseOrSemanticError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ParseOrSemanticError
impl Debug for ParseOrSemanticError
sourceimpl Display for ParseOrSemanticError
impl Display for ParseOrSemanticError
sourceimpl Error for ParseOrSemanticError
Available on crate feature std
only.
impl Error for ParseOrSemanticError
std
only.1.30.0 · sourcefn 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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl From<ParseError> for ParseOrSemanticError
impl From<ParseError> for ParseOrSemanticError
sourcefn from(e: ParseError) -> Self
fn from(e: ParseError) -> Self
Converts to this type from the input type.
sourceimpl From<SemanticError> for ParseOrSemanticError
impl From<SemanticError> for ParseOrSemanticError
sourcefn from(e: SemanticError) -> Self
fn from(e: SemanticError) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<ParseOrSemanticError> for ParseOrSemanticError
impl PartialEq<ParseOrSemanticError> for ParseOrSemanticError
sourcefn eq(&self, other: &ParseOrSemanticError) -> bool
fn eq(&self, other: &ParseOrSemanticError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for ParseOrSemanticError
Auto Trait Implementations
impl RefUnwindSafe for ParseOrSemanticError
impl Send for ParseOrSemanticError
impl Sync for ParseOrSemanticError
impl Unpin for ParseOrSemanticError
impl UnwindSafe for ParseOrSemanticError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more