pub trait Read {
    fn read<'m>(&'m mut self, buf: &'m mut [u8]) -> Result<usize, TlsError>;
}

Required Methods

Implementors