Skip to main content

CaptureMonitor

Struct CaptureMonitor 

Source
pub struct CaptureMonitor<P> { /* private fields */ }

Implementations§

Source§

impl<P> CaptureMonitor<P>
where P: MonitorPlatform,

Source

pub fn new(platform: P) -> Self

Source

pub fn next_event(&self) -> Option<String>

Source

pub fn run<F>(&self, on_event: F) -> usize
where F: FnMut(String),

Source

pub fn run_with_limit<F>(&self, max_events: usize, on_event: F) -> usize
where F: FnMut(String),

Source

pub fn collect_events(&self, max_events: usize) -> Vec<String>

Source

pub fn poll_until<F, C>( &self, poll_interval: Duration, should_continue: C, on_event: F, ) -> usize
where F: FnMut(String), C: FnMut() -> bool,

Source

pub fn poll_until_cancelled<F, S>( &self, poll_interval: Duration, cancel: &S, on_event: F, ) -> usize
where F: FnMut(String), S: CancelSignal,

Source

pub fn poll_until_cancelled_coalesced<F, S>( &self, poll_interval: Duration, min_emit_interval: Duration, cancel: &S, on_event: F, ) -> usize
where F: FnMut(String), S: CancelSignal,

Source

pub fn poll_until_cancelled_guarded<F, S>( &self, poll_interval: Duration, cancel: &S, guard: &MonitorSpamGuard, on_event: F, ) -> usize
where F: FnMut(String), S: CancelSignal,

Source

pub fn poll_until_cancelled_guarded_with_stats<F, S>( &self, poll_interval: Duration, cancel: &S, guard: &MonitorSpamGuard, on_event: F, ) -> MonitorGuardStats
where F: FnMut(String), S: CancelSignal,

Auto Trait Implementations§

§

impl<P> Freeze for CaptureMonitor<P>
where P: Freeze,

§

impl<P> RefUnwindSafe for CaptureMonitor<P>
where P: RefUnwindSafe,

§

impl<P> Send for CaptureMonitor<P>
where P: Send,

§

impl<P> Sync for CaptureMonitor<P>
where P: Sync,

§

impl<P> Unpin for CaptureMonitor<P>
where P: Unpin,

§

impl<P> UnsafeUnpin for CaptureMonitor<P>
where P: UnsafeUnpin,

§

impl<P> UnwindSafe for CaptureMonitor<P>
where P: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.