Struct gapi_grpc::google::monitoring::v3::ListUptimeCheckConfigsResponse[][src]

pub struct ListUptimeCheckConfigsResponse {
    pub uptime_check_configs: Vec<UptimeCheckConfig>,
    pub next_page_token: String,
    pub total_size: i32,
}

The protocol for the ListUptimeCheckConfigs response.

Fields

uptime_check_configs: Vec<UptimeCheckConfig>

The returned Uptime check configurations.

next_page_token: String

This 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).

total_size: i32

The total number of Uptime check configurations for the project, irrespective of any pagination.

Trait Implementations

impl Clone for ListUptimeCheckConfigsResponse[src]

impl Debug for ListUptimeCheckConfigsResponse[src]

impl Default for ListUptimeCheckConfigsResponse[src]

impl Message for ListUptimeCheckConfigsResponse[src]

impl PartialEq<ListUptimeCheckConfigsResponse> for ListUptimeCheckConfigsResponse[src]

impl StructuralPartialEq for ListUptimeCheckConfigsResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for ListUptimeCheckConfigsResponse

impl Send for ListUptimeCheckConfigsResponse

impl Sync for ListUptimeCheckConfigsResponse

impl Unpin for ListUptimeCheckConfigsResponse

impl UnwindSafe for ListUptimeCheckConfigsResponse

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]