pub struct SipResponseLine {
pub version: SipVersion,
pub status_code: u16,
pub reason_phrase: Vec<u8>,
}
Fields§
§version: SipVersion
§status_code: u16
§reason_phrase: Vec<u8>
Implementations§
Source§impl SipResponseLine
impl SipResponseLine
pub fn reader(&self) -> SipResponseLineReader<'_> ⓘ
Trait Implementations§
Source§impl Debug for SipResponseLine
impl Debug for SipResponseLine
Source§impl Serializable for SipResponseLine
impl Serializable for SipResponseLine
fn estimated_size(&self) -> usize
Auto Trait Implementations§
impl Freeze for SipResponseLine
impl RefUnwindSafe for SipResponseLine
impl Send for SipResponseLine
impl Sync for SipResponseLine
impl Unpin for SipResponseLine
impl UnwindSafe for SipResponseLine
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