pub struct ListWorkerPoolsResponse {
pub api_version: Option<String>,
pub items: Option<Vec<WorkerPool>>,
pub kind: Option<String>,
pub metadata: Option<ListMeta>,
pub unreachable: Option<Vec<String>>,
}Expand description
A list of WorkerPool resources.
§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).
- workerpools list namespaces (response)
Fields§
§api_version: Option<String>The API version for this call; returns “run.googleapis.com/v1”.
items: Option<Vec<WorkerPool>>List of WorkerPools.
kind: Option<String>The kind of this resource; returns “WorkerPoolList”.
metadata: Option<ListMeta>Metadata associated with this WorkerPool list.
unreachable: Option<Vec<String>>For calls against the global endpoint, returns the list of Cloud locations that could not be reached. For regional calls, this field is not used.
Trait Implementations§
Source§impl Clone for ListWorkerPoolsResponse
impl Clone for ListWorkerPoolsResponse
Source§fn clone(&self) -> ListWorkerPoolsResponse
fn clone(&self) -> ListWorkerPoolsResponse
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 ListWorkerPoolsResponse
impl Debug for ListWorkerPoolsResponse
Source§impl Default for ListWorkerPoolsResponse
impl Default for ListWorkerPoolsResponse
Source§fn default() -> ListWorkerPoolsResponse
fn default() -> ListWorkerPoolsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListWorkerPoolsResponse
impl<'de> Deserialize<'de> for ListWorkerPoolsResponse
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
Source§impl Serialize for ListWorkerPoolsResponse
impl Serialize for ListWorkerPoolsResponse
impl ResponseResult for ListWorkerPoolsResponse
Auto Trait Implementations§
impl Freeze for ListWorkerPoolsResponse
impl RefUnwindSafe for ListWorkerPoolsResponse
impl Send for ListWorkerPoolsResponse
impl Sync for ListWorkerPoolsResponse
impl Unpin for ListWorkerPoolsResponse
impl UnwindSafe for ListWorkerPoolsResponse
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