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
This is supported 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
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. 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
Performs the conversion.
sourceimpl From<SemanticError> for ParseOrSemanticError
impl From<SemanticError> for ParseOrSemanticError
sourcefn from(e: SemanticError) -> Self
fn from(e: SemanticError) -> Self
Performs the conversion.
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
sourcefn ne(&self, other: &ParseOrSemanticError) -> bool
fn ne(&self, other: &ParseOrSemanticError) -> bool
This method tests for !=
.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more