aboutsummaryrefslogtreecommitdiffstats
path: root/src/platform/tun.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/platform/tun.rs')
-rw-r--r--src/platform/tun.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/platform/tun.rs b/src/platform/tun.rs
index 801754e..38c95bf 100644
--- a/src/platform/tun.rs
+++ b/src/platform/tun.rs
@@ -58,5 +58,6 @@ pub trait Tun: Send + Sync + 'static {
pub trait PlatformTun: Tun {
type Status: Status;
+ #[allow(clippy::type_complexity)]
fn create(name: &str) -> Result<(Vec<Self::Reader>, Self::Writer, Self::Status), Self::Error>;
}