Skip to main content

Block

Enum Block 

Source
#[non_exhaustive]
pub enum Block { ChannelData { fields: Vec<(String, String)>, variables: Vec<(String, String)>, }, Sdp { direction: SdpDirection, body: Vec<String>, }, CodecNegotiation { media: CodecMedia, comparisons: Vec<(CodecOffer, CodecOffer)>, matched: Vec<CodecOffer>, near_matched: Vec<CodecOffer>, }, }
Expand description

Structured data extracted from a multi-line dump that follows a primary log entry.

Each variant corresponds to a block type that the stream state machine recognizes and reassembles from continuation lines.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

ChannelData

Channel variable dump — Channel-* fields and variable_* key-value pairs. Multi-line variable values (e.g. embedded SDP) are reassembled with \n separators.

Fields

§fields: Vec<(String, String)>
§variables: Vec<(String, String)>
§

Sdp

SDP session description body, collected line by line.

Fields

§direction: SdpDirection
§body: Vec<String>
§

CodecNegotiation

Codec negotiation sequence for one media type. A run only ever covers a single CodecMedia; audio and video traces never share a block.

Fields

§comparisons: Vec<(CodecOffer, CodecOffer)>

(remote offer, local implementation) for each pair compared.

§matched: Vec<CodecOffer>
§near_matched: Vec<CodecOffer>

Codecs kept as fallbacks because only their ptime differed.

Implementations§

Source§

impl Block

Source

pub fn field(&self, name: &str) -> Option<&str>

Value of a Channel-* field in a CHANNEL_DATA dump, or None if this block is another kind or never carried that field.

Source

pub fn variable<V: VariableName>(&self, var: V) -> Option<&str>

Value of a channel variable in a CHANNEL_DATA dump.

Accepts any of freeswitch-types’ variable-name enums, and spares the caller from knowing that a dump spells its keys with the variable_ prefix that SessionState::variable strips — the two surfaces answer the same question the same way.

Source§

impl Block

Source

pub fn sdp_codecs(&self) -> Option<Result<SdpCodecs, SdpCodecError>>

Codecs described by an SDP body.

None when there is no body to read — another block type, or an SDP marker that carried none. Sofia logs several (Duplicate SDP, Processing updated SDP) purely as announcements, and an empty body is absence rather than a malformed session.

Parsed on each call rather than stored — see docs/design-rationale.md. Only a session-level failure is an Err: a malformed a=rtpmap or a broken media section degrades into SdpCodecs::warnings.

Trait Implementations§

Source§

impl Clone for Block

Source§

fn clone(&self) -> Block

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Block

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for Block

Source§

impl PartialEq for Block

Source§

fn eq(&self, other: &Block) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Block

Auto Trait Implementations§

§

impl Freeze for Block

§

impl RefUnwindSafe for Block

§

impl Send for Block

§

impl Sync for Block

§

impl Unpin for Block

§

impl UnsafeUnpin for Block

§

impl UnwindSafe for Block

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.