Implement std::error::Error and fix minor issues (#99)

* fix clippy issues

* implement std error for ntex errors and bound WebResponseError

* fix minor issues
This commit is contained in:
Juan Aguilar 2022-01-25 17:27:18 +01:00 committed by GitHub
parent 7680c5482e
commit 2439797fcf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 41 additions and 25 deletions

View file

@ -1888,8 +1888,8 @@ impl Inner {
fn from_slice(cap: usize, src: &[u8], pool: PoolRef) -> Inner {
// Store data in vec
let mut vec = Vec::with_capacity(cap + SHARED_VEC_SIZE);
#[allow(clippy::uninit_vec)]
unsafe {
#![allow(clippy::uninit_vec)]
vec.set_len(SHARED_VEC_SIZE);
vec.extend_from_slice(src);