pub enum JokowayError {
Config(String),
Upstream(String),
Proxy(String),
Tls(String),
Acme(String),
Io(Error),
Network(String),
Other(String),
}Variants§
Config(String)
Upstream(String)
Proxy(String)
Tls(String)
Acme(String)
Io(Error)
Network(String)
Other(String)
Trait Implementations§
Source§impl Debug for JokowayError
impl Debug for JokowayError
Source§impl Display for JokowayError
impl Display for JokowayError
Source§impl Error for JokowayError
impl Error for JokowayError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 From<&str> for JokowayError
impl From<&str> for JokowayError
Source§impl From<Error> for JokowayError
impl From<Error> for JokowayError
Auto Trait Implementations§
impl Freeze for JokowayError
impl !RefUnwindSafe for JokowayError
impl Send for JokowayError
impl Sync for JokowayError
impl Unpin for JokowayError
impl UnsafeUnpin for JokowayError
impl !UnwindSafe for JokowayError
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