pub struct ConferenceParticipant {
pub call_reference: CallReference,
pub presentation_restrictions: PartyInformationRestrictions,
pub name: String,
pub number: String,
pub conference_name: String,
}Expand description
Presentation identity and call reference for a conference participant.
Fields§
§call_reference: CallReference§presentation_restrictions: PartyInformationRestrictions§name: String§number: String§conference_name: StringTrait Implementations§
Source§impl Clone for ConferenceParticipant
impl Clone for ConferenceParticipant
Source§fn clone(&self) -> ConferenceParticipant
fn clone(&self) -> ConferenceParticipant
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 ConferenceParticipant
impl Debug for ConferenceParticipant
impl Eq for ConferenceParticipant
Source§impl PartialEq for ConferenceParticipant
impl PartialEq for ConferenceParticipant
impl StructuralPartialEq for ConferenceParticipant
Auto Trait Implementations§
impl Freeze for ConferenceParticipant
impl RefUnwindSafe for ConferenceParticipant
impl Send for ConferenceParticipant
impl Sync for ConferenceParticipant
impl Unpin for ConferenceParticipant
impl UnsafeUnpin for ConferenceParticipant
impl UnwindSafe for ConferenceParticipant
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