pub trait IntoRecordSet: Sized {
// Required method
fn into_record_set(self) -> RecordSet;
}
👎Deprecated: use From/Into
Expand description
Types which implement this can be converted into a RecordSet
Required Methods§
Sourcefn into_record_set(self) -> RecordSet
👎Deprecated: use From/Into
fn into_record_set(self) -> RecordSet
Performs the conversion to a RecordSet
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.