Enum leptos_config::errors::LeptosConfigError
source · pub enum LeptosConfigError {
ConfigNotFound,
ConfigSectionNotFound,
EnvError,
ConfigError(String),
EnvVarError(String),
}
Variants§
Trait Implementations§
source§impl Clone for LeptosConfigError
impl Clone for LeptosConfigError
source§fn clone(&self) -> LeptosConfigError
fn clone(&self) -> LeptosConfigError
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 LeptosConfigError
impl Debug for LeptosConfigError
source§impl Display for LeptosConfigError
impl Display for LeptosConfigError
source§impl Error for LeptosConfigError
impl Error for LeptosConfigError
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()
source§impl From<AddrParseError> for LeptosConfigError
impl From<AddrParseError> for LeptosConfigError
source§fn from(e: AddrParseError) -> Self
fn from(e: AddrParseError) -> Self
Converts to this type from the input type.
source§impl From<ConfigError> for LeptosConfigError
impl From<ConfigError> for LeptosConfigError
source§fn from(e: ConfigError) -> Self
fn from(e: ConfigError) -> Self
Converts to this type from the input type.
source§impl From<ParseIntError> for LeptosConfigError
impl From<ParseIntError> for LeptosConfigError
source§fn from(e: ParseIntError) -> Self
fn from(e: ParseIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for LeptosConfigError
impl Send for LeptosConfigError
impl Sync for LeptosConfigError
impl Unpin for LeptosConfigError
impl UnwindSafe for LeptosConfigError
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