pub struct PromoteUseCase;Expand description
Use case for promoting run receipts to baselines.
Implementations§
Source§impl PromoteUseCase
impl PromoteUseCase
Sourcepub fn execute(req: PromoteRequest) -> PromoteResult
pub fn execute(req: PromoteRequest) -> PromoteResult
Execute the promote operation.
If normalize is true, the receipt will have run-specific fields
(run_id, started_at, ended_at) replaced with placeholder values
to make the baseline more stable for comparison purposes.
Auto Trait Implementations§
impl Freeze for PromoteUseCase
impl RefUnwindSafe for PromoteUseCase
impl Send for PromoteUseCase
impl Sync for PromoteUseCase
impl Unpin for PromoteUseCase
impl UnsafeUnpin for PromoteUseCase
impl UnwindSafe for PromoteUseCase
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<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.