#[non_exhaustive]pub struct ReservationSlotsListResponse {
pub id: Option<String>,
pub items: Vec<ReservationSlot>,
pub kind: Option<String>,
pub next_page_token: Option<String>,
pub self_link: Option<String>,
pub warning: Option<Warning>,
/* private fields */
}Available on crate feature
reservation-slots only.Expand description
A list of reservation slots within a single reservation.
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.id: Option<String>The unique identifier for the resource; defined by the server.
items: Vec<ReservationSlot>A list of reservation slot resources.
kind: Option<String>The type of resource. Alwayscompute#reservationSlot for a list of reservation slots.
next_page_token: Option<String>This token allows you to get the next page of results for list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for the query parameter pageToken in the next list request. Subsequent list requests will have their own nextPageToken to continue paging through the results.
self_link: Option<String>The server-defined URL for this resource.
warning: Option<Warning>An informational warning message.
Implementations§
Source§impl ReservationSlotsListResponse
impl ReservationSlotsListResponse
pub fn new() -> Self
Sourcepub fn set_or_clear_id<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_id<T>(self, v: Option<T>) -> Self
Sourcepub fn set_or_clear_kind<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_kind<T>(self, v: Option<T>) -> Self
Sourcepub fn set_next_page_token<T>(self, v: T) -> Self
pub fn set_next_page_token<T>(self, v: T) -> Self
Sets the value of next_page_token.
§Example
ⓘ
let x = ReservationSlotsListResponse::new().set_next_page_token("example");Sourcepub fn set_or_clear_next_page_token<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_next_page_token<T>(self, v: Option<T>) -> Self
Sets or clears the value of next_page_token.
§Example
ⓘ
let x = ReservationSlotsListResponse::new().set_or_clear_next_page_token(Some("example"));
let x = ReservationSlotsListResponse::new().set_or_clear_next_page_token(None::<String>);Sourcepub fn set_self_link<T>(self, v: T) -> Self
pub fn set_self_link<T>(self, v: T) -> Self
Sourcepub fn set_or_clear_self_link<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_self_link<T>(self, v: Option<T>) -> Self
Sourcepub fn set_warning<T>(self, v: T) -> Self
pub fn set_warning<T>(self, v: T) -> Self
Sourcepub fn set_or_clear_warning<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_warning<T>(self, v: Option<T>) -> Self
Sets or clears the value of warning.
§Example
ⓘ
use google_cloud_compute_v1::model::reservation_slots_list_response::Warning;
let x = ReservationSlotsListResponse::new().set_or_clear_warning(Some(Warning::default()/* use setters */));
let x = ReservationSlotsListResponse::new().set_or_clear_warning(None::<Warning>);Trait Implementations§
Source§impl Clone for ReservationSlotsListResponse
impl Clone for ReservationSlotsListResponse
Source§fn clone(&self) -> ReservationSlotsListResponse
fn clone(&self) -> ReservationSlotsListResponse
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 ReservationSlotsListResponse
impl Debug for ReservationSlotsListResponse
Source§impl Default for ReservationSlotsListResponse
impl Default for ReservationSlotsListResponse
Source§fn default() -> ReservationSlotsListResponse
fn default() -> ReservationSlotsListResponse
Returns the “default value” for a type. Read more
Source§impl PartialEq for ReservationSlotsListResponse
impl PartialEq for ReservationSlotsListResponse
Source§fn eq(&self, other: &ReservationSlotsListResponse) -> bool
fn eq(&self, other: &ReservationSlotsListResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReservationSlotsListResponse
Auto Trait Implementations§
impl Freeze for ReservationSlotsListResponse
impl RefUnwindSafe for ReservationSlotsListResponse
impl Send for ReservationSlotsListResponse
impl Sync for ReservationSlotsListResponse
impl Unpin for ReservationSlotsListResponse
impl UnwindSafe for ReservationSlotsListResponse
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