pub struct UpdateMemberParams {
pub account_sid: String,
pub queue_sid: String,
pub call_sid: String,
pub url: String,
pub method: Option<String>,
}
Expand description
struct for passing parameters to the method update_member
Fields§
§account_sid: String
The SID of the Account that created the Member resource(s) to update.
queue_sid: String
The SID of the Queue in which to find the members to update.
call_sid: String
The Call SID of the resource(s) to update.
url: String
The absolute URL of the Queue resource.
method: Option<String>
How to pass the update request data. Can be GET
or POST
and the default is POST
. POST
sends the data as encoded form data and GET
sends the data as query parameters.
Trait Implementations§
Source§impl Clone for UpdateMemberParams
impl Clone for UpdateMemberParams
Source§fn clone(&self) -> UpdateMemberParams
fn clone(&self) -> UpdateMemberParams
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 UpdateMemberParams
impl RefUnwindSafe for UpdateMemberParams
impl Send for UpdateMemberParams
impl Sync for UpdateMemberParams
impl Unpin for UpdateMemberParams
impl UnwindSafe for UpdateMemberParams
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