pub struct LogStreamFeedbackStats {Show 20 fields
pub state: LogStreamFeedbackState,
pub age: Option<CuDuration>,
pub failed: bool,
pub reports: u64,
pub rejected_reports: u64,
pub invalid_reports: u64,
pub rates_available: bool,
pub source_metrics_available: bool,
pub bytes_per_second: u64,
pub packets_per_second: u64,
pub finalized_symbols: u64,
pub loss_basis_points: u16,
pub recovery_basis_points: u16,
pub buffered_records: u32,
pub record_capacity: u32,
pub latest_copperlist: Option<u64>,
pub effective_repair_every_source_symbols: u16,
pub invalid_packets: u64,
pub duplicate_packets: u64,
pub expired_records: u64,
}Fields§
§state: LogStreamFeedbackState§age: Option<CuDuration>§failed: bool§reports: u64§rejected_reports: u64§invalid_reports: u64§rates_available: bool§source_metrics_available: bool§bytes_per_second: u64§packets_per_second: u64§finalized_symbols: u64§loss_basis_points: u16§recovery_basis_points: u16§buffered_records: u32§record_capacity: u32§latest_copperlist: Option<u64>§effective_repair_every_source_symbols: u16§invalid_packets: u64§duplicate_packets: u64§expired_records: u64Trait Implementations§
Source§impl Clone for LogStreamFeedbackStats
impl Clone for LogStreamFeedbackStats
Source§fn clone(&self) -> LogStreamFeedbackStats
fn clone(&self) -> LogStreamFeedbackStats
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 moreimpl Copy for LogStreamFeedbackStats
Source§impl Debug for LogStreamFeedbackStats
impl Debug for LogStreamFeedbackStats
Source§impl Default for LogStreamFeedbackStats
impl Default for LogStreamFeedbackStats
Source§fn default() -> LogStreamFeedbackStats
fn default() -> LogStreamFeedbackStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LogStreamFeedbackStats
impl RefUnwindSafe for LogStreamFeedbackStats
impl Send for LogStreamFeedbackStats
impl Sync for LogStreamFeedbackStats
impl Unpin for LogStreamFeedbackStats
impl UnsafeUnpin for LogStreamFeedbackStats
impl UnwindSafe for LogStreamFeedbackStats
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,
impl<T> GetTypeRegistration for T
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