pub trait NixReadExt {
// Required method
fn read_nix<'de, 'a: 'de, D: Deserialize<'de>>(&'a mut self) -> Result<D>;
}
Required Methods§
fn read_nix<'de, 'a: 'de, D: Deserialize<'de>>(&'a mut self) -> Result<D>
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.