pub struct AddParticipantResponse {
pub conference_id: ConferenceId,
pub call_reference: CallReference,
pub result: AddParticipantResult,
pub bridge_participant_id: BoundedBytes<257>,
}Expand description
Result of adding a participant, including the service-assigned identity.
Fields§
§conference_id: ConferenceId§call_reference: CallReference§result: AddParticipantResult§bridge_participant_id: BoundedBytes<257>Opaque service-assigned participant identity, bounded to its wire field.
Trait Implementations§
Source§impl Clone for AddParticipantResponse
impl Clone for AddParticipantResponse
Source§fn clone(&self) -> AddParticipantResponse
fn clone(&self) -> AddParticipantResponse
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 AddParticipantResponse
impl Debug for AddParticipantResponse
impl Eq for AddParticipantResponse
Source§impl PartialEq for AddParticipantResponse
impl PartialEq for AddParticipantResponse
impl StructuralPartialEq for AddParticipantResponse
Auto Trait Implementations§
impl Freeze for AddParticipantResponse
impl RefUnwindSafe for AddParticipantResponse
impl Send for AddParticipantResponse
impl Sync for AddParticipantResponse
impl Unpin for AddParticipantResponse
impl UnsafeUnpin for AddParticipantResponse
impl UnwindSafe for AddParticipantResponse
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