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 duplicate 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)>
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<AddrParseError> for LeptosConfigError
impl From<AddrParseError> for LeptosConfigError
Source§fn from(e: AddrParseError) -> LeptosConfigError
fn from(e: AddrParseError) -> LeptosConfigError
Converts to this type from the input type.
Source§impl From<ConfigError> for LeptosConfigError
impl From<ConfigError> for LeptosConfigError
Source§fn from(e: ConfigError) -> LeptosConfigError
fn from(e: ConfigError) -> LeptosConfigError
Converts to this type from the input type.
Source§impl From<ParseBoolError> for LeptosConfigError
impl From<ParseBoolError> for LeptosConfigError
Source§fn from(e: ParseBoolError) -> LeptosConfigError
fn from(e: ParseBoolError) -> LeptosConfigError
Converts to this type from the input type.
Source§impl From<ParseIntError> for LeptosConfigError
impl From<ParseIntError> for LeptosConfigError
Source§fn from(e: ParseIntError) -> LeptosConfigError
fn from(e: ParseIntError) -> LeptosConfigError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LeptosConfigError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> SerializableKey for T
impl<T> SerializableKey for T
Source§impl<T> StorageAccess<T> for T
impl<T> StorageAccess<T> for T
Source§fn as_borrowed(&self) -> &T
fn as_borrowed(&self) -> &T
Borrows the value.
Source§fn into_taken(self) -> T
fn into_taken(self) -> T
Takes the value.