pub struct ListHotTabletsResponse {
pub hot_tablets: Option<Vec<HotTablet>>,
pub next_page_token: Option<String>,
}Expand description
Response message for BigtableInstanceAdmin.ListHotTablets.
§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).
- instances clusters hot tablets list projects (response)
Fields§
§hot_tablets: Option<Vec<HotTablet>>List of hot tablets in the tables of the requested cluster that fall within the requested time range. Hot tablets are ordered by node cpu usage percent. If there are multiple hot tablets that correspond to the same tablet within a 15-minute interval, only the hot tablet with the highest node cpu usage will be included in the response.
next_page_token: Option<String>Set if not all hot tablets could be returned in a single response. Pass this value to page_token in another request to get the next page of results.
Trait Implementations§
Source§impl Clone for ListHotTabletsResponse
impl Clone for ListHotTabletsResponse
Source§fn clone(&self) -> ListHotTabletsResponse
fn clone(&self) -> ListHotTabletsResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ListHotTabletsResponse
impl Debug for ListHotTabletsResponse
Source§impl Default for ListHotTabletsResponse
impl Default for ListHotTabletsResponse
Source§fn default() -> ListHotTabletsResponse
fn default() -> ListHotTabletsResponse
Source§impl<'de> Deserialize<'de> for ListHotTabletsResponse
impl<'de> Deserialize<'de> for ListHotTabletsResponse
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>,
Source§impl Serialize for ListHotTabletsResponse
impl Serialize for ListHotTabletsResponse
impl ResponseResult for ListHotTabletsResponse
Auto Trait Implementations§
impl Freeze for ListHotTabletsResponse
impl RefUnwindSafe for ListHotTabletsResponse
impl Send for ListHotTabletsResponse
impl Sync for ListHotTabletsResponse
impl Unpin for ListHotTabletsResponse
impl UnwindSafe for ListHotTabletsResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more