pub struct ReconcilerStats {
pub processed_count: u64,
pub created_count: u64,
pub updated_count: u64,
pub deleted_count: u64,
}Expand description
Reconciler 统计信息
Fields§
§processed_count: u64已处理的资源数量
created_count: u64创建的 Deployment 数量
updated_count: u64更新的 Deployment 数量
deleted_count: u64删除的 Deployment 数量
Trait Implementations§
Source§impl Clone for ReconcilerStats
impl Clone for ReconcilerStats
Source§fn clone(&self) -> ReconcilerStats
fn clone(&self) -> ReconcilerStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReconcilerStats
impl Debug for ReconcilerStats
Source§impl Default for ReconcilerStats
impl Default for ReconcilerStats
Source§fn default() -> ReconcilerStats
fn default() -> ReconcilerStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReconcilerStats
impl RefUnwindSafe for ReconcilerStats
impl Send for ReconcilerStats
impl Sync for ReconcilerStats
impl Unpin for ReconcilerStats
impl UnsafeUnpin for ReconcilerStats
impl UnwindSafe for ReconcilerStats
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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