pub struct MiscellaneousCommand {
pub conference_id: ConferenceId,
pub passthrough_party_id: PassthroughPartyId,
pub call_reference: CallReference,
pub command: MiscCommandType,
pub data: BoundedBytes<36>,
}Expand description
Codec-specific multimedia command and its bounded parameter block.
Fields§
§conference_id: ConferenceId§passthrough_party_id: PassthroughPartyId§call_reference: CallReference§command: MiscCommandType§data: BoundedBytes<36>Command-specific bytes bounded by the fixed parameter area.
Trait Implementations§
Source§impl Clone for MiscellaneousCommand
impl Clone for MiscellaneousCommand
Source§fn clone(&self) -> MiscellaneousCommand
fn clone(&self) -> MiscellaneousCommand
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 MiscellaneousCommand
impl Debug for MiscellaneousCommand
impl Eq for MiscellaneousCommand
Source§impl PartialEq for MiscellaneousCommand
impl PartialEq for MiscellaneousCommand
impl StructuralPartialEq for MiscellaneousCommand
Auto Trait Implementations§
impl Freeze for MiscellaneousCommand
impl RefUnwindSafe for MiscellaneousCommand
impl Send for MiscellaneousCommand
impl Sync for MiscellaneousCommand
impl Unpin for MiscellaneousCommand
impl UnsafeUnpin for MiscellaneousCommand
impl UnwindSafe for MiscellaneousCommand
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