pub trait Decode {
    fn decode(value: MySqlValue) -> Result<Self, Error>
    where
        Self: Sized
; }

Required Methods

Implementations on Foreign Types

Implementors