pub struct TableChangeLogCommon<T>(pub Vec<EpochNewChangeLogCommon<T>>);
Tuple Fields§
§0: Vec<EpochNewChangeLogCommon<T>>
Implementations§
source§impl<T> TableChangeLogCommon<T>
impl<T> TableChangeLogCommon<T>
pub fn filter_epoch( &self, (min_epoch, max_epoch): (u64, u64), ) -> &[EpochNewChangeLogCommon<T>]
sourcepub fn get_non_empty_epochs(&self, min_epoch: u64, max_count: usize) -> Vec<u64>
pub fn get_non_empty_epochs(&self, min_epoch: u64, max_count: usize) -> Vec<u64>
Returns epochs where value is non-null and >= min_epoch
.
pub fn truncate(&mut self, truncate_epoch: u64)
source§impl<T> TableChangeLogCommon<T>
impl<T> TableChangeLogCommon<T>
pub fn to_protobuf(&self) -> PbTableChangeLog
source§impl<T> TableChangeLogCommon<T>where
T: for<'a> From<&'a PbSstableInfo>,
impl<T> TableChangeLogCommon<T>where
T: for<'a> From<&'a PbSstableInfo>,
pub fn from_protobuf(val: &PbTableChangeLog) -> Self
Trait Implementations§
source§impl<T: Clone> Clone for TableChangeLogCommon<T>
impl<T: Clone> Clone for TableChangeLogCommon<T>
source§fn clone(&self) -> TableChangeLogCommon<T>
fn clone(&self) -> TableChangeLogCommon<T>
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<T: Debug> Debug for TableChangeLogCommon<T>
impl<T: Debug> Debug for TableChangeLogCommon<T>
source§impl<T: PartialEq> PartialEq for TableChangeLogCommon<T>
impl<T: PartialEq> PartialEq for TableChangeLogCommon<T>
impl<T> StructuralPartialEq for TableChangeLogCommon<T>
Auto Trait Implementations§
impl<T> Freeze for TableChangeLogCommon<T>
impl<T> RefUnwindSafe for TableChangeLogCommon<T>where
T: RefUnwindSafe,
impl<T> Send for TableChangeLogCommon<T>where
T: Send,
impl<T> Sync for TableChangeLogCommon<T>where
T: Sync,
impl<T> Unpin for TableChangeLogCommon<T>where
T: Unpin,
impl<T> UnwindSafe for TableChangeLogCommon<T>where
T: UnwindSafe,
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moresource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
type Err = Infallible
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
source§impl<M> MetricVecRelabelExt for M
impl<M> MetricVecRelabelExt for M
source§fn relabel(
self,
metric_level: MetricLevel,
relabel_threshold: MetricLevel,
) -> RelabeledMetricVec<M>
fn relabel( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>
Equivalent to
RelabeledMetricVec::with_metric_level
.source§fn relabel_n(
self,
metric_level: MetricLevel,
relabel_threshold: MetricLevel,
relabel_num: usize,
) -> RelabeledMetricVec<M>
fn relabel_n( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, relabel_num: usize, ) -> RelabeledMetricVec<M>
Equivalent to
RelabeledMetricVec::with_metric_level_relabel_n
.source§fn relabel_debug_1(
self,
relabel_threshold: MetricLevel,
) -> RelabeledMetricVec<M>
fn relabel_debug_1( self, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>
Equivalent to
RelabeledMetricVec::with_metric_level_relabel_n
with metric_level
set to
MetricLevel::Debug
and relabel_num
set to 1.