pub struct Stages {
pub build: StageBuild,
pub test: StageTest,
pub release: StageRelease,
}Expand description
Stages(时序维度):定义价值流的节拍。
不规定“怎么做“,只规定“什么时候检查什么“。
Fields§
§build: StageBuild构建阶段配置。
test: StageTest测试阶段配置。
release: StageRelease发布阶段配置。
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Stages
impl RefUnwindSafe for Stages
impl Send for Stages
impl Sync for Stages
impl Unpin for Stages
impl UnsafeUnpin for Stages
impl UnwindSafe for Stages
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