pub struct KeyRangeInfos {
pub infos: Option<Vec<KeyRangeInfo>>,
pub total_size: Option<i32>,
}
Expand description
A message representing a list of specific information for multiple key ranges.
This type is not used in any activity, and only used as part of another schema.
Fields§
§infos: Option<Vec<KeyRangeInfo>>
The list individual KeyRangeInfos.
total_size: Option<i32>
The total size of the list of all KeyRangeInfos. This may be larger than the number of repeated messages above. If that is the case, this number may be used to determine how many are not being shown.
Trait Implementations§
Source§impl Clone for KeyRangeInfos
impl Clone for KeyRangeInfos
Source§fn clone(&self) -> KeyRangeInfos
fn clone(&self) -> KeyRangeInfos
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 KeyRangeInfos
impl Debug for KeyRangeInfos
Source§impl Default for KeyRangeInfos
impl Default for KeyRangeInfos
Source§fn default() -> KeyRangeInfos
fn default() -> KeyRangeInfos
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KeyRangeInfos
impl<'de> Deserialize<'de> for KeyRangeInfos
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 KeyRangeInfos
impl Serialize for KeyRangeInfos
impl Part for KeyRangeInfos
Auto Trait Implementations§
impl Freeze for KeyRangeInfos
impl RefUnwindSafe for KeyRangeInfos
impl Send for KeyRangeInfos
impl Sync for KeyRangeInfos
impl Unpin for KeyRangeInfos
impl UnwindSafe for KeyRangeInfos
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
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>
Converts
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>
Converts
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