pub trait ExclusivelyContextual: Sized {
// Required method
fn format_locked(&self, ctx: &Context) -> Result<String, AcesError>;
}Expand description
A version of the Contextual trait to be used for fine-grained
access to Context.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.