#[non_exhaustive]pub struct ListUptimeCheckIpsResponse {
pub uptime_check_ips: Vec<UptimeCheckIp>,
pub next_page_token: String,
}Expand description
The protocol for the ListUptimeCheckIps response.
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.uptime_check_ips: Vec<UptimeCheckIp>The returned list of IP addresses (including region and location) that the checkers run from.
next_page_token: StringThis field represents the pagination token to retrieve the next page of results. If the value is empty, it means no further results for the request. To retrieve the next page of results, the value of the next_page_token is passed to the subsequent List method call (in the request message’s page_token field). NOTE: this field is not yet implemented
Implementations§
Source§impl ListUptimeCheckIpsResponse
impl ListUptimeCheckIpsResponse
Sourcepub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
pub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
Sets the value of next_page_token.
Sourcepub fn set_uptime_check_ips<T, V>(self, v: T) -> Self
pub fn set_uptime_check_ips<T, V>(self, v: T) -> Self
Sets the value of uptime_check_ips.
Trait Implementations§
Source§impl Clone for ListUptimeCheckIpsResponse
impl Clone for ListUptimeCheckIpsResponse
Source§fn clone(&self) -> ListUptimeCheckIpsResponse
fn clone(&self) -> ListUptimeCheckIpsResponse
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 ListUptimeCheckIpsResponse
impl Debug for ListUptimeCheckIpsResponse
Source§impl Default for ListUptimeCheckIpsResponse
impl Default for ListUptimeCheckIpsResponse
Source§fn default() -> ListUptimeCheckIpsResponse
fn default() -> ListUptimeCheckIpsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListUptimeCheckIpsResponsewhere
ListUptimeCheckIpsResponse: Default,
impl<'de> Deserialize<'de> for ListUptimeCheckIpsResponsewhere
ListUptimeCheckIpsResponse: Default,
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 Message for ListUptimeCheckIpsResponse
impl Message for ListUptimeCheckIpsResponse
impl StructuralPartialEq for ListUptimeCheckIpsResponse
Auto Trait Implementations§
impl Freeze for ListUptimeCheckIpsResponse
impl RefUnwindSafe for ListUptimeCheckIpsResponse
impl Send for ListUptimeCheckIpsResponse
impl Sync for ListUptimeCheckIpsResponse
impl Unpin for ListUptimeCheckIpsResponse
impl UnwindSafe for ListUptimeCheckIpsResponse
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