Skip to content

Commit

Permalink
Correctly export CloseStatus in channel root (Matthias247#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-airoldie authored and Matthias247 committed Jan 15, 2020
1 parent 181dbb1 commit eb4e8db
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/channel/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ pub use self::error::{ChannelSendError, TryReceiveError, TrySendError};

mod channel_future;
use channel_future::{
ChannelReceiveAccess, ChannelSendAccess, CloseStatus, RecvPollState,
RecvWaitQueueEntry, SendPollState, SendWaitQueueEntry,
ChannelReceiveAccess, ChannelSendAccess, RecvPollState, RecvWaitQueueEntry,
SendPollState, SendWaitQueueEntry,
};
pub use channel_future::{
ChannelReceiveFuture, ChannelSendFuture, CloseStatus,
};
pub use channel_future::{ChannelReceiveFuture, ChannelSendFuture};

mod oneshot;

Expand Down

0 comments on commit eb4e8db

Please sign in to comment.