pub trait Plain {
// Required method
fn fmt(&self, fmt: &mut Formatter<'_>) -> Result;
}Expand description
Format trait for the Conjure PLAIN format.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".