pub struct QueryHubStatusResponse {
pub hub_status_entries: Option<Vec<HubStatusEntry>>,
pub next_page_token: Option<String>,
}Expand description
The response for HubService.QueryHubStatus.
§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 global hubs query status projects (response)
Fields§
§hub_status_entries: Option<Vec<HubStatusEntry>>The list of hub status.
next_page_token: Option<String>The token for the next page of the response. To see more results, use this value as the page_token for your next request. If this value is empty, there are no more results.
Trait Implementations§
Source§impl Clone for QueryHubStatusResponse
impl Clone for QueryHubStatusResponse
Source§fn clone(&self) -> QueryHubStatusResponse
fn clone(&self) -> QueryHubStatusResponse
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 QueryHubStatusResponse
impl Debug for QueryHubStatusResponse
Source§impl Default for QueryHubStatusResponse
impl Default for QueryHubStatusResponse
Source§fn default() -> QueryHubStatusResponse
fn default() -> QueryHubStatusResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryHubStatusResponse
impl<'de> Deserialize<'de> for QueryHubStatusResponse
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 QueryHubStatusResponse
impl Serialize for QueryHubStatusResponse
impl ResponseResult for QueryHubStatusResponse
Auto Trait Implementations§
impl Freeze for QueryHubStatusResponse
impl RefUnwindSafe for QueryHubStatusResponse
impl Send for QueryHubStatusResponse
impl Sync for QueryHubStatusResponse
impl Unpin for QueryHubStatusResponse
impl UnwindSafe for QueryHubStatusResponse
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