Define Transport trait, TransportAcceptor trait, TransportInfo, and TransportKind types

This commit is contained in:
2026-06-02 09:17:50 +00:00
parent 56d032afdb
commit dddc6d7a4c
10 changed files with 323 additions and 2 deletions

View File

@@ -8,4 +8,5 @@ pub mod error;
#[cfg(feature = "testutil")]
pub mod testutil;
pub use error::{AuthError, ChannelError, ConfigError, TransportError};
pub use error::{AuthError, ChannelError, ConfigError, TransportError};
pub use transport::{Transport, TransportAcceptor, TransportInfo, TransportKind};