#[non_exhaustive]pub struct ListRuntimesRequest {
pub parent: String,
pub filter: String,
/* private fields */
}
Expand description
Request for the ListRuntimes
method.
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.parent: String
Required. The project and location from which the runtimes should be
listed, specified in the format projects/*/locations/*
filter: String
The filter for Runtimes that match the filter expression, following the syntax outlined in https://google.aip.dev/160.
Implementations§
Trait Implementations§
Source§impl Clone for ListRuntimesRequest
impl Clone for ListRuntimesRequest
Source§fn clone(&self) -> ListRuntimesRequest
fn clone(&self) -> ListRuntimesRequest
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 ListRuntimesRequest
impl Debug for ListRuntimesRequest
Source§impl Default for ListRuntimesRequest
impl Default for ListRuntimesRequest
Source§fn default() -> ListRuntimesRequest
fn default() -> ListRuntimesRequest
Returns the “default value” for a type. Read more
Source§impl Message for ListRuntimesRequest
impl Message for ListRuntimesRequest
Source§impl PartialEq for ListRuntimesRequest
impl PartialEq for ListRuntimesRequest
impl StructuralPartialEq for ListRuntimesRequest
Auto Trait Implementations§
impl Freeze for ListRuntimesRequest
impl RefUnwindSafe for ListRuntimesRequest
impl Send for ListRuntimesRequest
impl Sync for ListRuntimesRequest
impl Unpin for ListRuntimesRequest
impl UnwindSafe for ListRuntimesRequest
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