Trait IntoTableRef

Source
pub trait IntoTableRef: Into<TableRef> {
    // Provided method
    fn into_table_ref(self) -> TableRef { ... }
}

Provided 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.

Implementors§

Source§

impl<T> IntoTableRef for T
where T: Into<TableRef>,