pub(super) struct TargetPlanAuditContext<'a> {
pub(super) spec: SpecId,
pub(super) rows: &'a mut Vec<TargetPlanAuditRow>,
pub(super) counts: &'a mut EffectAuditCounts,
pub(super) filter: &'a [TargetPlanAxisFilter],
pub(super) summaries: &'a mut TargetPlanSummaries,
}Fields§
§spec: SpecId§rows: &'a mut Vec<TargetPlanAuditRow>§counts: &'a mut EffectAuditCounts§filter: &'a [TargetPlanAxisFilter]§summaries: &'a mut TargetPlanSummariesAuto Trait Implementations§
impl<'a> Freeze for TargetPlanAuditContext<'a>
impl<'a> RefUnwindSafe for TargetPlanAuditContext<'a>
impl<'a> Send for TargetPlanAuditContext<'a>
impl<'a> Sync for TargetPlanAuditContext<'a>
impl<'a> Unpin for TargetPlanAuditContext<'a>
impl<'a> UnsafeUnpin for TargetPlanAuditContext<'a>
impl<'a> !UnwindSafe for TargetPlanAuditContext<'a>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more