pub trait IntoField<VF: ViewFields> {
// Required method
fn into_field(self) -> Result<VF>;
}Required Methods§
fn into_field(self) -> Result<VF>
Implementations on Foreign Types§
Source§impl<VF: ViewFields> IntoField<VF> for &str
Implement for &str, using ViewFields::from_str.
impl<VF: ViewFields> IntoField<VF> for &str
Implement for &str, using ViewFields::from_str.
fn into_field(self) -> Result<VF>
Implementors§
impl<VF: ViewFields> IntoField<VF> for VF
Implement for all fields.