mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Enable rustls/std feature (#494)
This commit is contained in:
parent
48702413f3
commit
5fd9d7ce90
15 changed files with 35 additions and 31 deletions
|
@ -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 {
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue