pub trait WriteTomlKey {
// Required method
fn write_toml_key<W: TomlWrite + ?Sized>(&self, writer: &mut W) -> Result;
}
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.
Implementations on Foreign Types§
Source§impl WriteTomlKey for Cow<'_, str>
Available on crate feature alloc
only.
impl WriteTomlKey for Cow<'_, str>
Available on crate feature
alloc
only.Source§impl WriteTomlKey for str
impl WriteTomlKey for str
Source§impl WriteTomlKey for String
Available on crate feature alloc
only.
impl WriteTomlKey for String
Available on crate feature
alloc
only.