pub struct TddResult {
pub state: TddState,
pub message: String,
}Expand description
Result returned from each TddWorkflow transition method.
Fields§
§state: TddStateThe new TDD state after the transition.
message: StringHuman-readable description of what happened and what to do next.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TddResult
impl RefUnwindSafe for TddResult
impl Send for TddResult
impl Sync for TddResult
impl Unpin for TddResult
impl UnsafeUnpin for TddResult
impl UnwindSafe for TddResult
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