#[non_exhaustive]pub struct ListUptimeCheckIpsRequest {
pub page_size: i32,
pub page_token: String,
}Expand description
The protocol for the ListUptimeCheckIps 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.page_size: i32The maximum number of results to return in a single response. The server may further constrain the maximum number of results returned in a single page. If the page_size is <=0, the server will decide the number of results to be returned. NOTE: this field is not yet implemented
page_token: StringIf this field is not empty then it must contain the nextPageToken value
returned by a previous call to this method. Using this field causes the
method to return more results from the previous method call.
NOTE: this field is not yet implemented
Implementations§
Source§impl ListUptimeCheckIpsRequest
impl ListUptimeCheckIpsRequest
Sourcepub fn set_page_size<T: Into<i32>>(self, v: T) -> Self
pub fn set_page_size<T: Into<i32>>(self, v: T) -> Self
Sets the value of page_size.
Sourcepub fn set_page_token<T: Into<String>>(self, v: T) -> Self
pub fn set_page_token<T: Into<String>>(self, v: T) -> Self
Sets the value of page_token.
Trait Implementations§
Source§impl Clone for ListUptimeCheckIpsRequest
impl Clone for ListUptimeCheckIpsRequest
Source§fn clone(&self) -> ListUptimeCheckIpsRequest
fn clone(&self) -> ListUptimeCheckIpsRequest
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 ListUptimeCheckIpsRequest
impl Debug for ListUptimeCheckIpsRequest
Source§impl Default for ListUptimeCheckIpsRequest
impl Default for ListUptimeCheckIpsRequest
Source§fn default() -> ListUptimeCheckIpsRequest
fn default() -> ListUptimeCheckIpsRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListUptimeCheckIpsRequestwhere
ListUptimeCheckIpsRequest: Default,
impl<'de> Deserialize<'de> for ListUptimeCheckIpsRequestwhere
ListUptimeCheckIpsRequest: 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 ListUptimeCheckIpsRequest
impl Message for ListUptimeCheckIpsRequest
impl StructuralPartialEq for ListUptimeCheckIpsRequest
Auto Trait Implementations§
impl Freeze for ListUptimeCheckIpsRequest
impl RefUnwindSafe for ListUptimeCheckIpsRequest
impl Send for ListUptimeCheckIpsRequest
impl Sync for ListUptimeCheckIpsRequest
impl Unpin for ListUptimeCheckIpsRequest
impl UnwindSafe for ListUptimeCheckIpsRequest
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