Enum fuel_core::database::KvStoreError
source · pub enum KvStoreError {
Error(Box<dyn Error + Sync + Send + 'static, Global>),
NotFound(&'static str, &'static str),
}
Variants§
Error(Box<dyn Error + Sync + Send + 'static, Global>)
NotFound(&'static str, &'static str)
This error should be created with not_found
macro.
Trait Implementations§
source§impl Debug for KvStoreError
impl Debug for KvStoreError
source§impl Display for KvStoreError
impl Display for KvStoreError
source§impl Error for KvStoreError
impl Error for KvStoreError
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<Error> for KvStoreError
impl From<Error> for KvStoreError
source§fn from(e: Error) -> KvStoreError
fn from(e: Error) -> KvStoreError
Converts to this type from the input type.
source§impl From<KvStoreError> for Error
impl From<KvStoreError> for Error
source§fn from(e: KvStoreError) -> Error
fn from(e: KvStoreError) -> Error
Converts to this type from the input type.
source§impl From<KvStoreError> for ResourceQueryError
impl From<KvStoreError> for ResourceQueryError
source§fn from(e: KvStoreError) -> Self
fn from(e: KvStoreError) -> Self
Converts to this type from the input type.