sdp-rs 0.2.1

SDP Rust library, parser & generator of the Session Description Protocol
Documentation
1
2
3
4
5
6
7
8
9
//! Common types that might appear in more than one line types of an SDP message.

mod addrtype;
mod nettype;
mod typed_time;

pub use addrtype::Addrtype;
pub use nettype::Nettype;
pub use typed_time::TypedTime;