pub struct FetchParticipantParams {
pub account_sid: String,
pub conference_sid: String,
pub call_sid: String,
}
Expand description
struct for passing parameters to the method fetch_participant
Fields§
§account_sid: String
The SID of the Account that created the Participant resource to fetch.
conference_sid: String
The SID of the conference with the participant to fetch.
call_sid: String
The Call SID or label of the participant to fetch. 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 FetchParticipantParams
impl Clone for FetchParticipantParams
Source§fn clone(&self) -> FetchParticipantParams
fn clone(&self) -> FetchParticipantParams
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 FetchParticipantParams
impl RefUnwindSafe for FetchParticipantParams
impl Send for FetchParticipantParams
impl Sync for FetchParticipantParams
impl Unpin for FetchParticipantParams
impl UnwindSafe for FetchParticipantParams
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