Skip to main content

IntoTableRef

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

Implementors§

Source§

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