pub struct StartMediaTransmissionWire {
pub conference_id: u32,
pub g723_bitrate: u32,
pub stream_passthrough_id: u32,
pub associated_stream_id: u32,
pub dtmf_type: u32,
pub mixing_mode: u32,
pub direction: u32,
pub latent_capabilities: [u8; 36],
}Expand description
Fields in StartMediaTransmission which are deliberately kept separate from the runtime RTP endpoint but must not be discarded by the codec.
Fields§
§conference_id: u32§g723_bitrate: u32Codec qualifier word used as the G.723 bit-rate selector when applicable.
stream_passthrough_id: u32Identity for this media stream within the conference.
associated_stream_id: u32Related stream identity, or zero when the stream is independent.
dtmf_type: u32Numeric DTMF transport selector retained from the wire.
mixing_mode: u32Conference mixer mode retained from the selected layout.
direction: u32Media-direction word retained from the selected layout.
latent_capabilities: [u8; 36]Fixed latent-capability area retained byte-for-byte.
Trait Implementations§
Source§impl Clone for StartMediaTransmissionWire
impl Clone for StartMediaTransmissionWire
Source§fn clone(&self) -> StartMediaTransmissionWire
fn clone(&self) -> StartMediaTransmissionWire
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StartMediaTransmissionWire
impl Debug for StartMediaTransmissionWire
impl Eq for StartMediaTransmissionWire
impl StructuralPartialEq for StartMediaTransmissionWire
Auto Trait Implementations§
impl Freeze for StartMediaTransmissionWire
impl RefUnwindSafe for StartMediaTransmissionWire
impl Send for StartMediaTransmissionWire
impl Sync for StartMediaTransmissionWire
impl Unpin for StartMediaTransmissionWire
impl UnsafeUnpin for StartMediaTransmissionWire
impl UnwindSafe for StartMediaTransmissionWire
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