pub struct FetchMemberParams {
pub account_sid: String,
pub queue_sid: String,
pub call_sid: String,
}
Expand description
struct for passing parameters to the method fetch_member
Fields§
§account_sid: String
The SID of the Account that created the Member resource(s) to fetch.
queue_sid: String
The SID of the Queue in which to find the members to fetch.
call_sid: String
The Call SID of the resource(s) to fetch.
Trait Implementations§
Source§impl Clone for FetchMemberParams
impl Clone for FetchMemberParams
Source§fn clone(&self) -> FetchMemberParams
fn clone(&self) -> FetchMemberParams
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 FetchMemberParams
impl RefUnwindSafe for FetchMemberParams
impl Send for FetchMemberParams
impl Sync for FetchMemberParams
impl Unpin for FetchMemberParams
impl UnwindSafe for FetchMemberParams
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