pub trait FieldValue: Any + 'static {
    // Required method
    fn as_any(&self) -> &(dyn Any + 'static);
}
Expand description

A value of a field..

Required Methods§

source

fn as_any(&self) -> &(dyn Any + 'static)

Casts self to a &dyn Any

Implementors§

source§

impl<T> FieldValue for T
where T: 'static,