pub struct Detectors<'a, 'd, T>{
pub short_circuit: ShortCircuitDetector<'a, 'd, T>,
pub clock_absence: ClockAbsenceDetector<'a, 'd, T>,
}Expand description
Instance-level detectors.
Fields§
§short_circuit: ShortCircuitDetector<'a, 'd, T>Short-circuit detector.
clock_absence: ClockAbsenceDetector<'a, 'd, T>Clock-absence detector.
Auto Trait Implementations§
impl<'a, 'd, T> !RefUnwindSafe for Detectors<'a, 'd, T>
impl<'a, 'd, T> !UnwindSafe for Detectors<'a, 'd, T>
impl<'a, 'd, T> Freeze for Detectors<'a, 'd, T>
impl<'a, 'd, T> Send for Detectors<'a, 'd, T>
impl<'a, 'd, T> Sync for Detectors<'a, 'd, T>
impl<'a, 'd, T> Unpin for Detectors<'a, 'd, T>
impl<'a, 'd, T> UnsafeUnpin for Detectors<'a, 'd, T>
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