pub struct InspectedOutput<O> {
pub output: O,
pub observations: ObservationSet,
}Expand description
A completed instrumented operation and its portable observations.
Fields§
§output: OOrdinary backend output from the operation.
observations: ObservationSetRequested host-materialized observations.
Trait Implementations§
Auto Trait Implementations§
impl<O> Freeze for InspectedOutput<O>where
O: Freeze,
impl<O> RefUnwindSafe for InspectedOutput<O>where
O: RefUnwindSafe,
impl<O> Send for InspectedOutput<O>where
O: Send,
impl<O> Sync for InspectedOutput<O>where
O: Sync,
impl<O> Unpin for InspectedOutput<O>where
O: Unpin,
impl<O> UnsafeUnpin for InspectedOutput<O>where
O: UnsafeUnpin,
impl<O> UnwindSafe for InspectedOutput<O>where
O: 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