pub trait RawKeySpecifierComponent {
// Required method
fn append_to(&self, s: &mut String) -> Result<(), Bug>;
}Expand description
Trait for (only) formatting as a KeySpecifierComponent
Like the formatting part of KeySpecifierComponent
but implemented for Option and &str too.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".