pub enum LavaError {
ParseUrlError(ParseError),
InvalidToken(InvalidHeaderValue),
ReqwestError(Error),
}
Expand description
Errors in construction of a Lava
instance
Variants
ParseUrlError(ParseError)
InvalidToken(InvalidHeaderValue)
ReqwestError(Error)
Trait Implementations
sourceimpl Error for LavaError
impl Error for LavaError
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
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<InvalidHeaderValue> for LavaError
impl From<InvalidHeaderValue> for LavaError
sourcefn from(source: InvalidHeaderValue) -> Self
fn from(source: InvalidHeaderValue) -> Self
Converts to this type from the input type.
sourceimpl From<ParseError> for LavaError
impl From<ParseError> for LavaError
sourcefn from(source: ParseError) -> Self
fn from(source: ParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for LavaError
impl Send for LavaError
impl Sync for LavaError
impl Unpin for LavaError
impl !UnwindSafe for LavaError
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