From f18e47e38a2ca04b4f985e638c545acdbe971318 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Thu, 2 Mar 2023 17:27:54 +0100 Subject: [PATCH] Export poll::PollData from the crate root Missed this in #7, so now the PollData type cannot be named. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index e543c8c..f646ba6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -63,7 +63,7 @@ pub mod extensions { } mod poll; -pub use poll::{Ack, Poll}; +pub use poll::{Ack, Poll, PollData}; pub use client::EppClient; pub use error::Error;