pub struct ChangeParticipantRequest {
pub conference_id: ConferenceId,
pub participant: ConferenceParticipant,
}Expand description
Update the presentation identity of an existing conference participant.
This is the standalone intra-control 0x013e request. It intentionally
shares the participant layout with AddParticipantRequest.
Fields§
§conference_id: ConferenceId§participant: ConferenceParticipantTrait Implementations§
Source§impl Clone for ChangeParticipantRequest
impl Clone for ChangeParticipantRequest
Source§fn clone(&self) -> ChangeParticipantRequest
fn clone(&self) -> ChangeParticipantRequest
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 ChangeParticipantRequest
impl Debug for ChangeParticipantRequest
impl Eq for ChangeParticipantRequest
Source§impl PartialEq for ChangeParticipantRequest
impl PartialEq for ChangeParticipantRequest
impl StructuralPartialEq for ChangeParticipantRequest
Auto Trait Implementations§
impl Freeze for ChangeParticipantRequest
impl RefUnwindSafe for ChangeParticipantRequest
impl Send for ChangeParticipantRequest
impl Sync for ChangeParticipantRequest
impl Unpin for ChangeParticipantRequest
impl UnsafeUnpin for ChangeParticipantRequest
impl UnwindSafe for ChangeParticipantRequest
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