Enum envy_store::Error [−][src]
pub enum Error {
Store(GetParametersByPathError),
Envy(Error),
}Represents possible errors
Variants
Store(GetParametersByPathError)Returned when parameter store request fails
Envy(Error)Returned with deserialization fails
Trait Implementations
impl Debug for Error[src]
impl Debug for Errorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Error[src]
impl PartialEq for Errorfn eq(&self, other: &Error) -> bool[src]
fn eq(&self, other: &Error) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Error) -> bool[src]
fn ne(&self, other: &Error) -> boolThis method tests for !=.
impl From<GetParametersByPathError> for Error[src]
impl From<GetParametersByPathError> for Errorfn from(err: GetParametersByPathError) -> Self[src]
fn from(err: GetParametersByPathError) -> SelfPerforms the conversion.
impl From<Error> for Error[src]
impl From<Error> for Errorimpl StdError for Error[src]
impl StdError for Errorfn description(&self) -> &str[src]
fn description(&self) -> &strThis method is soft-deprecated. Read more
fn cause(&self) -> Option<&StdError>[src]
fn cause(&self) -> Option<&StdError>The lower-level cause of this error, if any. Read more
impl Display for Error[src]
impl Display for Error