pub struct DeleteParticipantParams {
pub account_sid: String,
pub conference_sid: String,
pub call_sid: String,
}
Expand description
struct for passing parameters to the method delete_participant
Fields§
§account_sid: String
The SID of the Account that created the Participant resources to delete.
conference_sid: String
The SID of the conference with the participants to delete.
call_sid: String
The Call SID or label of the participant to delete. Non URL safe characters in a label must be percent encoded, for example, a space character is represented as %20.
Trait Implementations§
Source§impl Clone for DeleteParticipantParams
impl Clone for DeleteParticipantParams
Source§fn clone(&self) -> DeleteParticipantParams
fn clone(&self) -> DeleteParticipantParams
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for DeleteParticipantParams
impl RefUnwindSafe for DeleteParticipantParams
impl Send for DeleteParticipantParams
impl Sync for DeleteParticipantParams
impl Unpin for DeleteParticipantParams
impl UnwindSafe for DeleteParticipantParams
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