sdp_rs/lines/common/
mod.rs

1//! Common types that might appear in more than one line types of an SDP message.
2
3mod addrtype;
4mod nettype;
5mod typed_time;
6
7pub use addrtype::Addrtype;
8pub use nettype::Nettype;
9pub use typed_time::TypedTime;