pub enum NetType {
In,
Tn,
Atm,
Pstn,
Other(String),
}Expand description
Type of network of the originator or a connection of the session.
See RFC 8866 Section 5.2, RFC 8866 Section 5.7 and RFC 8866 Section 8.2.6 for more details
Variants§
In
Internet
Tn
Telephone Network
Atm
ATM Bearer Connection
Pstn
Public Switched Telephone Network
Other(String)
Other
Implementations§
Trait Implementations§
impl Eq for NetType
impl StructuralPartialEq for NetType
Auto Trait Implementations§
impl Freeze for NetType
impl RefUnwindSafe for NetType
impl Send for NetType
impl Sync for NetType
impl Unpin for NetType
impl UnsafeUnpin for NetType
impl UnwindSafe for NetType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more