pub trait FromDuckDbwhere
Self: ToDuckDbType,{
// Required method
fn from_duckdb(value: Self::DuckDbRepresentation) -> Self;
}
Required Methods§
Sourcefn from_duckdb(value: Self::DuckDbRepresentation) -> Self
fn from_duckdb(value: Self::DuckDbRepresentation) -> Self
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.