pub trait UnknownFields {
// Required method
fn unknown_fields(&self) -> HashMap<String, String>;
}Required Methods§
Sourcefn unknown_fields(&self) -> HashMap<String, String>
fn unknown_fields(&self) -> HashMap<String, String>
Unrecognized fields in the WITH clause.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".