pub trait GetField<T> {
// Required method
fn get_field(&self) -> T;
}
Expand description
A type that can return a certain field T
.
pub trait GetField<T> {
// Required method
fn get_field(&self) -> T;
}
A type that can return a certain field T
.