pub struct SipHeader {
pub name: String,
pub value: String,
}Available on crate feature
webhook only.Expand description
A header from the SIP Invite.
Fields§
§name: StringName of the SIP Header.
value: StringValue of the SIP Header.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SipHeader
impl<'de> Deserialize<'de> for SipHeader
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for SipHeader
Auto Trait Implementations§
impl Freeze for SipHeader
impl RefUnwindSafe for SipHeader
impl Send for SipHeader
impl Sync for SipHeader
impl Unpin for SipHeader
impl UnwindSafe for SipHeader
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