pub trait Decode {
    // Required method
    fn decode(row: &OracleData) -> Result<Value, Error>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Decode for Value

Implementors§