diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2022-03-14 23:38:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-14 23:38:53 +0100 |
commit | 88d0f01948b68f4a4d87e02a5138e94ac0a6eaea (patch) | |
tree | 2b50e5d2c6990c94f47e604281f3557b3efd9736 /ext/net/ops_tls.rs | |
parent | 9f494dc405afc4b1b29fa4c813bd5751f26aaa36 (diff) |
feat(ops): custom arity (#13949)
Also cleanup & drop ignored wildcard op-args
Diffstat (limited to 'ext/net/ops_tls.rs')
-rw-r--r-- | ext/net/ops_tls.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ext/net/ops_tls.rs b/ext/net/ops_tls.rs index 6289d963f..fea59cc22 100644 --- a/ext/net/ops_tls.rs +++ b/ext/net/ops_tls.rs @@ -769,7 +769,6 @@ pub struct StartTlsArgs { pub async fn op_tls_start<NP>( state: Rc<RefCell<OpState>>, args: StartTlsArgs, - _: (), ) -> Result<OpConn, AnyError> where NP: NetPermissions + 'static, @@ -862,7 +861,6 @@ where pub async fn op_tls_connect<NP>( state: Rc<RefCell<OpState>>, args: ConnectTlsArgs, - _: (), ) -> Result<OpConn, AnyError> where NP: NetPermissions + 'static, @@ -1022,7 +1020,6 @@ pub struct ListenTlsArgs { pub fn op_tls_listen<NP>( state: &mut OpState, args: ListenTlsArgs, - _: (), ) -> Result<OpConn, AnyError> where NP: NetPermissions + 'static, @@ -1119,7 +1116,6 @@ where pub async fn op_tls_accept( state: Rc<RefCell<OpState>>, rid: ResourceId, - _: (), ) -> Result<OpConn, AnyError> { let resource = state .borrow() @@ -1171,7 +1167,6 @@ pub async fn op_tls_accept( pub async fn op_tls_handshake( state: Rc<RefCell<OpState>>, rid: ResourceId, - _: (), ) -> Result<TlsHandshakeInfo, AnyError> { let resource = state .borrow() |