[][src]Struct libsip::HeaderWriteConfig

pub struct HeaderWriteConfig {
    pub user_agent: Option<String>,
    pub allowed_methods: Option<Vec<Method>>,
}

This struct is used in the client module when creating sip messages it is used to specify some common values for the generated sip headers.

Fields

user_agent: Option<String>

The Value to set for the User Agent header. By default this is set to libsip {version}, Set to None to disable adding a User Agent header.

allowed_methods: Option<Vec<Method>>

The value for the Allowed Methods Header. By default set to Invite, Cancel, Bye, Message. Set to None to disable adding header.

Implementations

impl HeaderWriteConfig[src]

pub fn write_headers_vec(&self, m: &mut Vec<Header>)[src]

Write configured headers into the provided Vec.

pub fn write_headers(&self, m: &mut Headers)[src]

Write configured headers into the provided Headers Map.

Trait Implementations

impl Default for HeaderWriteConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,