pub enum SipFirstLine {
Request(SipRequestLine),
Response(SipResponseLine),
}
Variants§
Request(SipRequestLine)
Response(SipResponseLine)
Implementations§
Source§impl SipFirstLine
impl SipFirstLine
pub fn decode_first_line( s: &[u8], ) -> Result<Option<(SipFirstLine, usize)>, &str>
Auto Trait Implementations§
impl Freeze for SipFirstLine
impl RefUnwindSafe for SipFirstLine
impl Send for SipFirstLine
impl Sync for SipFirstLine
impl Unpin for SipFirstLine
impl UnwindSafe for SipFirstLine
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