Enable rustls/std feature (#494)

This commit is contained in:
Nikolay Kim 2024-12-30 18:40:31 +05:00 committed by GitHub
parent 48702413f3
commit 5fd9d7ce90
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 35 additions and 31 deletions

View file

@ -300,7 +300,7 @@ pub struct ReadBuf<'a> {
pub(crate) need_write: Cell<bool>,
}
impl<'a> ReadBuf<'a> {
impl ReadBuf<'_> {
#[inline]
/// Get io tag
pub fn tag(&self) -> &'static str {
@ -444,7 +444,7 @@ pub struct WriteBuf<'a> {
pub(crate) need_write: Cell<bool>,
}
impl<'a> WriteBuf<'a> {
impl WriteBuf<'_> {
#[inline]
/// Get io tag
pub fn tag(&self) -> &'static str {

View file

@ -87,7 +87,7 @@ impl ReadContext {
// handle incoming data
let total2 = buf.len();
let nbytes = if total2 > total { total2 - total } else { 0 };
let nbytes = total2.saturating_sub(total);
let total = total2;
if let Some(mut first_buf) = inner.buffer.get_read_source() {