Type Definition vault_client::Result[]

type Result<T> = Result<T, Error>;

Convenient wrapper around std::Result.

Trait Implementations

impl<M: Debug + Send + Sync> ResultLoggingExt<M> for Result<M>
[src]

Logs the current state of Self. In a 'good' state, it will call the logging closure provided. In a 'bad' state, it will just log the appropriate error at 'error' level. Read more