sqlx-core 0.2.6

Core of SQLx, the rust SQL toolkit. Not intended to be used directly.
Documentation
1
2
3
4
5
6
7
use std::io;

pub trait Decode {
    fn decode(buf: &[u8]) -> crate::Result<Self>
    where
        Self: Sized;
}