pub struct TargetsStatus {
pub response_time_met: bool,
pub context_accuracy_met: bool,
pub completion_acceptance_met: bool,
pub memory_target_met: bool,
pub cache_hit_met: bool,
pub error_recovery_met: bool,
}
Expand description
Status of performance targets
Fields§
§response_time_met: bool
§context_accuracy_met: bool
§completion_acceptance_met: bool
§memory_target_met: bool
§cache_hit_met: bool
§error_recovery_met: bool
Implementations§
Source§impl TargetsStatus
impl TargetsStatus
Trait Implementations§
Source§impl Debug for TargetsStatus
impl Debug for TargetsStatus
Source§impl Default for TargetsStatus
impl Default for TargetsStatus
Source§fn default() -> TargetsStatus
fn default() -> TargetsStatus
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TargetsStatus
impl RefUnwindSafe for TargetsStatus
impl Send for TargetsStatus
impl Sync for TargetsStatus
impl Unpin for TargetsStatus
impl UnwindSafe for TargetsStatus
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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