pub trait StoreResultExt<T> {
// Required method
fn store_err(self) -> Result<T, AgentLoopError>;
}Expand description
Required Methods§
fn store_err(self) -> Result<T, AgentLoopError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".