pub struct UpdateQueueParams {
pub account_sid: String,
pub sid: String,
pub friendly_name: Option<String>,
pub max_size: Option<i32>,
}
Expand description
struct for passing parameters to the method update_queue
Fields§
§account_sid: String
The SID of the Account that created the Queue resource to update.
sid: String
The Twilio-provided string that uniquely identifies the Queue resource to update
friendly_name: Option<String>
A descriptive string that you created to describe this resource. It can be up to 64 characters long.
max_size: Option<i32>
The maximum number of calls allowed to be in the queue. The default is 1000. The maximum is 5000.
Trait Implementations§
Source§impl Clone for UpdateQueueParams
impl Clone for UpdateQueueParams
Source§fn clone(&self) -> UpdateQueueParams
fn clone(&self) -> UpdateQueueParams
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 UpdateQueueParams
impl RefUnwindSafe for UpdateQueueParams
impl Send for UpdateQueueParams
impl Sync for UpdateQueueParams
impl Unpin for UpdateQueueParams
impl UnwindSafe for UpdateQueueParams
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