#[non_exhaustive]pub struct FetchStaticIpsRequest {
pub name: String,
pub page_size: i32,
pub page_token: String,
/* private fields */
}
Expand description
Request message for ‘FetchStaticIps’ request.
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.name: String
Required. The resource name for the location for which static IPs should be
returned. Must be in the format projects/*/locations/*
.
page_size: i32
Maximum number of Ips to return, will likely not be specified.
page_token: String
A page token, received from a previous ListStaticIps
call.
will likely not be specified.
Implementations§
Trait Implementations§
Source§impl Clone for FetchStaticIpsRequest
impl Clone for FetchStaticIpsRequest
Source§fn clone(&self) -> FetchStaticIpsRequest
fn clone(&self) -> FetchStaticIpsRequest
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 FetchStaticIpsRequest
impl Debug for FetchStaticIpsRequest
Source§impl Default for FetchStaticIpsRequest
impl Default for FetchStaticIpsRequest
Source§fn default() -> FetchStaticIpsRequest
fn default() -> FetchStaticIpsRequest
Returns the “default value” for a type. Read more
Source§impl Message for FetchStaticIpsRequest
impl Message for FetchStaticIpsRequest
Source§impl PartialEq for FetchStaticIpsRequest
impl PartialEq for FetchStaticIpsRequest
impl StructuralPartialEq for FetchStaticIpsRequest
Auto Trait Implementations§
impl Freeze for FetchStaticIpsRequest
impl RefUnwindSafe for FetchStaticIpsRequest
impl Send for FetchStaticIpsRequest
impl Sync for FetchStaticIpsRequest
impl Unpin for FetchStaticIpsRequest
impl UnwindSafe for FetchStaticIpsRequest
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