Enum lightning_invoice::CreationError
source · pub enum CreationError {
DescriptionTooLong,
RouteTooLong,
TimestampOutOfBounds,
InvalidAmount,
MissingRouteHints,
}
Expand description
Errors that may occur when constructing a new RawInvoice
or Invoice
Variants§
DescriptionTooLong
The supplied description string was longer than 639 bytes (see Description::new(…)
)
RouteTooLong
The specified route has too many hops and can’t be encoded
TimestampOutOfBounds
The Unix timestamp of the supplied date is less than zero or greater than 35-bits
InvalidAmount
The supplied millisatoshi amount was greater than the total bitcoin supply.
MissingRouteHints
Route hints were required for this invoice and were missing. Applies to phantom invoices.
Trait Implementations§
source§impl Clone for CreationError
impl Clone for CreationError
source§fn clone(&self) -> CreationError
fn clone(&self) -> CreationError
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 CreationError
impl Debug for CreationError
source§impl Display for CreationError
impl Display for CreationError
source§impl Error for CreationError
Available on crate feature std
only.
impl Error for CreationError
Available on crate feature
std
only.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()