#[non_exhaustive]pub struct ListZonesResponse {
pub zones: Vec<Zone>,
pub next_page_token: String,
/* private fields */
}Expand description
List zones response.
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.zones: Vec<Zone>Zones under the given parent lake.
next_page_token: StringToken to retrieve the next page of results, or empty if there are no more results in the list.
Implementations§
Source§impl ListZonesResponse
impl ListZonesResponse
pub fn new() -> Self
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 ListZonesResponse
impl Clone for ListZonesResponse
Source§fn clone(&self) -> ListZonesResponse
fn clone(&self) -> ListZonesResponse
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 ListZonesResponse
impl Debug for ListZonesResponse
Source§impl Default for ListZonesResponse
impl Default for ListZonesResponse
Source§fn default() -> ListZonesResponse
fn default() -> ListZonesResponse
Returns the “default value” for a type. Read more
Source§impl Message for ListZonesResponse
impl Message for ListZonesResponse
Source§impl PartialEq for ListZonesResponse
impl PartialEq for ListZonesResponse
impl StructuralPartialEq for ListZonesResponse
Auto Trait Implementations§
impl Freeze for ListZonesResponse
impl RefUnwindSafe for ListZonesResponse
impl Send for ListZonesResponse
impl Sync for ListZonesResponse
impl Unpin for ListZonesResponse
impl UnwindSafe for ListZonesResponse
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