pub struct RequestLine {
pub method: Method,
pub uri: SipUri,
}Expand description
The leading line of a SIP request message
Fields§
§method: Method§uri: SipUriTrait Implementations§
Source§impl Clone for RequestLine
impl Clone for RequestLine
Source§fn clone(&self) -> RequestLine
fn clone(&self) -> RequestLine
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RequestLine
impl Debug for RequestLine
Source§impl FromStr for RequestLine
impl FromStr for RequestLine
Source§impl Parse for RequestLine
impl Parse for RequestLine
Auto Trait Implementations§
impl !Freeze for RequestLine
impl RefUnwindSafe for RequestLine
impl Send for RequestLine
impl Sync for RequestLine
impl Unpin for RequestLine
impl UnsafeUnpin for RequestLine
impl UnwindSafe for RequestLine
Blanket Implementations§
Source§impl<T> AppendCtx for Twhere
T: Print,
impl<T> AppendCtx for Twhere
T: Print,
Source§fn print_ctx<'a>(&'a self, ctx: PrintCtx<'a>) -> WithPrintCtx<'a, Self>
fn print_ctx<'a>(&'a self, ctx: PrintCtx<'a>) -> WithPrintCtx<'a, Self>
Wrap a type inside a
WithPrintCtx so it implements displaySource§fn default_print_ctx(&self) -> WithPrintCtx<'_, Self>
fn default_print_ctx(&self) -> WithPrintCtx<'_, Self>
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