pub trait TryFromRefRow<R>where
R: Row,{
// Required method
fn try_from(r: &R) -> Result<Self>
where Self: Sized;
}Expand description
Trait to be implemented to allow a Row to be converted into an object
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".