Skip to content

Commit

Permalink
Make rumqttc::(v5::)?client::Iter public
Browse files Browse the repository at this point in the history
  • Loading branch information
kelnos committed Jun 10, 2022
1 parent 18c56c1 commit 254c882
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rumqttc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ mod tls;
pub mod v5;

pub use flume::{SendError, Sender, TrySendError};
pub use client::{AsyncClient, Client, ClientError, Connection};
pub use client::{AsyncClient, Client, ClientError, Connection, Iter};
pub use eventloop::{ConnectionError, Event, EventLoop};
pub use mqttbytes::v4::*;
pub use mqttbytes::*;
Expand Down
2 changes: 1 addition & 1 deletion rumqttc/src/v5/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ mod state;
#[cfg(feature = "use-rustls")]
mod tls;

pub use client::{AsyncClient, Client, ClientError, Connection};
pub use client::{AsyncClient, Client, ClientError, Connection, Iter};
pub use eventloop::{ConnectionError, EventLoop};
pub use flume::{SendError, Sender, TrySendError};
pub use notifier::Notifier;
Expand Down

0 comments on commit 254c882

Please sign in to comment.