pub enum CyclePlan {
Soft {
wall_ms: u64,
},
HardFallback {
reason: String,
},
}Expand description
The action smix runner cycle takes given a SoftCycleProbe.
Variants§
Soft
The in-process soft-cycle recovered the runner; nothing else to do. Carries the measured warm recovery wall-time (ms).
HardFallback
Fall back to the xcodebuild hard-cycle (down() + up()),
byte-identical to the pre-C2 behaviour. Carries a human reason.
Trait Implementations§
impl Eq for CyclePlan
impl StructuralPartialEq for CyclePlan
Auto Trait Implementations§
impl Freeze for CyclePlan
impl RefUnwindSafe for CyclePlan
impl Send for CyclePlan
impl Sync for CyclePlan
impl Unpin for CyclePlan
impl UnsafeUnpin for CyclePlan
impl UnwindSafe for CyclePlan
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