mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Glommio clippy (#341)
This commit is contained in:
parent
a858394855
commit
ec8eb23707
17 changed files with 28 additions and 50 deletions
|
@ -1,4 +1,4 @@
|
|||
use std::{io::Result, net, net::SocketAddr, path::Path};
|
||||
use std::{io::Result, net, net::SocketAddr};
|
||||
|
||||
use ntex_bytes::PoolRef;
|
||||
use ntex_io::Io;
|
||||
|
@ -32,7 +32,7 @@ pub async fn tcp_connect_in(addr: SocketAddr, pool: PoolRef) -> Result<Io> {
|
|||
/// Opens a unix stream connection.
|
||||
pub async fn unix_connect<'a, P>(addr: P) -> Result<Io>
|
||||
where
|
||||
P: AsRef<Path> + 'a,
|
||||
P: AsRef<std::path::Path> + 'a,
|
||||
{
|
||||
let sock = tokio::net::UnixStream::connect(addr).await?;
|
||||
Ok(Io::new(UnixStream(sock)))
|
||||
|
@ -42,7 +42,7 @@ where
|
|||
/// Opens a unix stream connection and specified memory pool.
|
||||
pub async fn unix_connect_in<'a, P>(addr: P, pool: PoolRef) -> Result<Io>
|
||||
where
|
||||
P: AsRef<Path> + 'a,
|
||||
P: AsRef<std::path::Path> + 'a,
|
||||
{
|
||||
let sock = tokio::net::UnixStream::connect(addr).await?;
|
||||
Ok(Io::with_memory_pool(UnixStream(sock), pool))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue