From 5cd28a6cdc6b6cb82cd4501a864dd8e05ba78cef Mon Sep 17 00:00:00 2001 From: Tangent 128 Date: Tue, 8 Oct 2019 21:44:37 -0400 Subject: [PATCH] use core Never type --- src/channel.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/channel.rs b/src/channel.rs index c5e6e01..ed10c5f 100644 --- a/src/channel.rs +++ b/src/channel.rs @@ -14,12 +14,11 @@ use futures::{ Receiver } }; +use futures3::Never; use odds::vec::VecExt; use crate::chunk::Chunk; -pub enum Never {} - /// A collection of listeners to a stream of WebM chunks. /// Sending a chunk may fail due to a client being disconnected, /// or simply failing to keep up with the stream buffer. In either