Trait Convert

Source
pub trait Convert<T> {
    // Required method
    fn convert(&self) -> Result<T>;
}
Expand description

Trait to convert from a Value to some other type.

Required Methods§

Source

fn convert(&self) -> Result<T>

Implementors§