#[non_exhaustive]pub struct ListQueuesResponse {
pub queues: Vec<Queue>,
pub next_page_token: String,
/* private fields */
}Expand description
Response message for ListQueues.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.queues: Vec<Queue>The list of queues.
next_page_token: StringA token to retrieve next page of results.
To return the next page of results, call ListQueues with this value as the page_token.
If the next_page_token is empty, there are no more results.
The page token is valid for only 2 hours.
Implementations§
Source§impl ListQueuesResponse
impl ListQueuesResponse
pub fn new() -> Self
Sourcepub fn set_queues<T, V>(self, v: T) -> Self
pub fn set_queues<T, V>(self, v: T) -> Self
Sets the value of queues.
Sourcepub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
pub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
Sets the value of next_page_token.
Trait Implementations§
Source§impl Clone for ListQueuesResponse
impl Clone for ListQueuesResponse
Source§fn clone(&self) -> ListQueuesResponse
fn clone(&self) -> ListQueuesResponse
Returns a duplicate 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 moreSource§impl Debug for ListQueuesResponse
impl Debug for ListQueuesResponse
Source§impl Default for ListQueuesResponse
impl Default for ListQueuesResponse
Source§fn default() -> ListQueuesResponse
fn default() -> ListQueuesResponse
Returns the “default value” for a type. Read more
Source§impl Message for ListQueuesResponse
impl Message for ListQueuesResponse
Source§impl PartialEq for ListQueuesResponse
impl PartialEq for ListQueuesResponse
impl StructuralPartialEq for ListQueuesResponse
Auto Trait Implementations§
impl Freeze for ListQueuesResponse
impl RefUnwindSafe for ListQueuesResponse
impl Send for ListQueuesResponse
impl Sync for ListQueuesResponse
impl Unpin for ListQueuesResponse
impl UnwindSafe for ListQueuesResponse
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