pub trait WrapContext<C> {
type ContextError;
// Required method
fn wrap_context(self, context: C) -> Self::ContextError;
}
Expand description
Wrap value in type with context information
pub trait WrapContext<C> {
type ContextError;
// Required method
fn wrap_context(self, context: C) -> Self::ContextError;
}
Wrap value in type with context information