Struct google_datastream1::api::FetchStaticIpsResponse
source · pub struct FetchStaticIpsResponse {
pub next_page_token: Option<String>,
pub static_ips: Option<Vec<String>>,
}
Expand description
Response message for a ‘FetchStaticIps’ response.
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 fetch static ips projects (response)
Fields§
§next_page_token: Option<String>
A token that can be sent as page_token
to retrieve the next page. If this field is omitted, there are no subsequent pages.
static_ips: Option<Vec<String>>
list of static ips by account
Trait Implementations§
source§impl Clone for FetchStaticIpsResponse
impl Clone for FetchStaticIpsResponse
source§fn clone(&self) -> FetchStaticIpsResponse
fn clone(&self) -> FetchStaticIpsResponse
Returns a copy 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 FetchStaticIpsResponse
impl Debug for FetchStaticIpsResponse
source§impl Default for FetchStaticIpsResponse
impl Default for FetchStaticIpsResponse
source§fn default() -> FetchStaticIpsResponse
fn default() -> FetchStaticIpsResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for FetchStaticIpsResponse
impl<'de> Deserialize<'de> for FetchStaticIpsResponse
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 FetchStaticIpsResponse
impl Serialize for FetchStaticIpsResponse
impl ResponseResult for FetchStaticIpsResponse
Auto Trait Implementations§
impl RefUnwindSafe for FetchStaticIpsResponse
impl Send for FetchStaticIpsResponse
impl Sync for FetchStaticIpsResponse
impl Unpin for FetchStaticIpsResponse
impl UnwindSafe for FetchStaticIpsResponse
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