pub struct ListCapacityCommitmentsResponse {
pub capacity_commitments: Option<Vec<CapacityCommitment>>,
pub next_page_token: Option<String>,
}Expand description
The response for ReservationService.ListCapacityCommitments.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- locations capacity commitments list projects (response)
Fields§
§capacity_commitments: Option<Vec<CapacityCommitment>>List of capacity commitments visible to the user.
next_page_token: Option<String>Token to retrieve the next page of results, or empty if there are no more results in the list.
Trait Implementations§
Source§impl Clone for ListCapacityCommitmentsResponse
impl Clone for ListCapacityCommitmentsResponse
Source§fn clone(&self) -> ListCapacityCommitmentsResponse
fn clone(&self) -> ListCapacityCommitmentsResponse
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 Default for ListCapacityCommitmentsResponse
impl Default for ListCapacityCommitmentsResponse
Source§fn default() -> ListCapacityCommitmentsResponse
fn default() -> ListCapacityCommitmentsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListCapacityCommitmentsResponse
impl<'de> Deserialize<'de> for ListCapacityCommitmentsResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl ResponseResult for ListCapacityCommitmentsResponse
Auto Trait Implementations§
impl Freeze for ListCapacityCommitmentsResponse
impl RefUnwindSafe for ListCapacityCommitmentsResponse
impl Send for ListCapacityCommitmentsResponse
impl Sync for ListCapacityCommitmentsResponse
impl Unpin for ListCapacityCommitmentsResponse
impl UnwindSafe for ListCapacityCommitmentsResponse
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