pub struct LogStreamMonitor {
pub destination: CompactString,
pub bitrate_bps: u64,
pub baseline_repair_every_source_symbols: usize,
/* private fields */
}Expand description
Identity and immutable policy are bound once during generated app construction.
Fields§
§destination: CompactString§bitrate_bps: u64§baseline_repair_every_source_symbols: usizeImplementations§
Source§impl LogStreamMonitor
impl LogStreamMonitor
pub fn new( destination: &str, bitrate_bps: u64, baseline: usize, source: impl LogStreamStatsSource + 'static, ) -> Self
pub fn snapshot(&self) -> LogStreamStats
Trait Implementations§
Source§impl Clone for LogStreamMonitor
impl Clone for LogStreamMonitor
Source§fn clone(&self) -> LogStreamMonitor
fn clone(&self) -> LogStreamMonitor
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for LogStreamMonitor
impl !UnwindSafe for LogStreamMonitor
impl Freeze for LogStreamMonitor
impl Send for LogStreamMonitor
impl Sync for LogStreamMonitor
impl Unpin for LogStreamMonitor
impl UnsafeUnpin for LogStreamMonitor
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