pub struct CreateQueueParams {
pub account_sid: String,
pub friendly_name: String,
pub max_size: Option<i32>,
}
Expand description
struct for passing parameters to the method create_queue
Fields§
§account_sid: String
The SID of the Account that will create the resource.
friendly_name: 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 CreateQueueParams
impl Clone for CreateQueueParams
Source§fn clone(&self) -> CreateQueueParams
fn clone(&self) -> CreateQueueParams
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 CreateQueueParams
impl RefUnwindSafe for CreateQueueParams
impl Send for CreateQueueParams
impl Sync for CreateQueueParams
impl Unpin for CreateQueueParams
impl UnwindSafe for CreateQueueParams
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