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§

source

fn into_record_set(self) -> RecordSet

👎Deprecated: use From/Into

Performs the conversion to a RecordSet

Object Safety§

This trait is not object safe.

Implementors§