pub struct MonitoringResult<T> {
pub result: T,
pub timing: TimingInfo,
pub anomaly: Option<TimingAnomaly>,
}Expand description
Result of monitoring a cryptographic operation.
Fields§
§result: TThe result of the operation
timing: TimingInfoTiming information
anomaly: Option<TimingAnomaly>Detected anomaly (if any)
Trait Implementations§
Source§impl<T: Clone> Clone for MonitoringResult<T>
impl<T: Clone> Clone for MonitoringResult<T>
Source§fn clone(&self) -> MonitoringResult<T>
fn clone(&self) -> MonitoringResult<T>
Returns a duplicate of the value. Read more
1.0.0 · 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<T> Freeze for MonitoringResult<T>where
T: Freeze,
impl<T> RefUnwindSafe for MonitoringResult<T>where
T: RefUnwindSafe,
impl<T> Send for MonitoringResult<T>where
T: Send,
impl<T> Sync for MonitoringResult<T>where
T: Sync,
impl<T> Unpin for MonitoringResult<T>where
T: Unpin,
impl<T> UnwindSafe for MonitoringResult<T>where
T: UnwindSafe,
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