1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-27 16:52:58 +01:00

add constraints

This commit is contained in:
Nikolay Kim 2018-09-27 21:45:40 -07:00
parent a2245c1751
commit 1745a575a5

View File

@ -18,7 +18,7 @@ pub struct OpensslAcceptor<T> {
io: PhantomData<T>,
}
impl<T> OpensslAcceptor<T> {
impl<T: AsyncRead + AsyncWrite> OpensslAcceptor<T> {
/// Create default `OpensslAcceptor`
pub fn new(acceptor: SslAcceptor) -> Self {
OpensslAcceptor {