pub enum ProcessingDecider {
ProcessAll,
DropAll,
DropBeforeDeadline {
drop_if_older_than: Instant,
drop_deltas: bool,
},
}
Variants§
Implementations§
Source§impl ProcessingDecider
impl ProcessingDecider
pub fn should_be_processed<T: ObservationLike>(&self, observation: &T) -> bool
Auto Trait Implementations§
impl Freeze for ProcessingDecider
impl RefUnwindSafe for ProcessingDecider
impl Send for ProcessingDecider
impl Sync for ProcessingDecider
impl Unpin for ProcessingDecider
impl UnwindSafe for ProcessingDecider
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