mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
clippy warnings
This commit is contained in:
parent
96ca5c3542
commit
f2c51a0fa1
4 changed files with 16 additions and 16 deletions
|
@ -31,18 +31,18 @@ pub(crate) enum PrepForSendingError {
|
||||||
Http(HttpError),
|
Http(HttpError),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Into<FreezeRequestError> for PrepForSendingError {
|
impl From<PrepForSendingError> for FreezeRequestError {
|
||||||
fn into(self) -> FreezeRequestError {
|
fn from(err: PrepForSendingError) -> FreezeRequestError {
|
||||||
match self {
|
match err {
|
||||||
PrepForSendingError::Url(e) => FreezeRequestError::Url(e),
|
PrepForSendingError::Url(e) => FreezeRequestError::Url(e),
|
||||||
PrepForSendingError::Http(e) => FreezeRequestError::Http(e),
|
PrepForSendingError::Http(e) => FreezeRequestError::Http(e),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Into<SendRequestError> for PrepForSendingError {
|
impl From<PrepForSendingError> for SendRequestError {
|
||||||
fn into(self) -> SendRequestError {
|
fn from(err: PrepForSendingError) -> SendRequestError {
|
||||||
match self {
|
match err {
|
||||||
PrepForSendingError::Url(e) => SendRequestError::Url(e),
|
PrepForSendingError::Url(e) => SendRequestError::Url(e),
|
||||||
PrepForSendingError::Http(e) => SendRequestError::Http(e),
|
PrepForSendingError::Http(e) => SendRequestError::Http(e),
|
||||||
}
|
}
|
||||||
|
|
|
@ -125,9 +125,9 @@ impl WebResponse {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Into<Response<Body>> for WebResponse {
|
impl From<WebResponse> for Response<Body> {
|
||||||
fn into(self) -> Response<Body> {
|
fn from(res: WebResponse) -> Response<Body> {
|
||||||
self.response
|
res.response
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -156,7 +156,7 @@ impl<Err: ErrorRenderer> FromRequest<Err> for Bytes {
|
||||||
|
|
||||||
let limit = cfg.limit;
|
let limit = cfg.limit;
|
||||||
let fut = HttpMessageBody::new(req, payload).limit(limit);
|
let fut = HttpMessageBody::new(req, payload).limit(limit);
|
||||||
Either::Left(async move { Ok(fut.await?) }.boxed_local())
|
Either::Left(async move { fut.await }.boxed_local())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -35,9 +35,9 @@ impl fmt::Display for OpCode {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Into<u8> for OpCode {
|
impl From<OpCode> for u8 {
|
||||||
fn into(self) -> u8 {
|
fn from(code: OpCode) -> u8 {
|
||||||
match self {
|
match code {
|
||||||
Continue => 0,
|
Continue => 0,
|
||||||
Text => 1,
|
Text => 1,
|
||||||
Binary => 2,
|
Binary => 2,
|
||||||
|
@ -132,9 +132,9 @@ pub enum CloseCode {
|
||||||
Other(u16),
|
Other(u16),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Into<u16> for CloseCode {
|
impl From<CloseCode> for u16 {
|
||||||
fn into(self) -> u16 {
|
fn from(code: CloseCode) -> u16 {
|
||||||
match self {
|
match code {
|
||||||
Normal => 1000,
|
Normal => 1000,
|
||||||
Away => 1001,
|
Away => 1001,
|
||||||
Protocol => 1002,
|
Protocol => 1002,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue