stepflow-action 0.0.6

Actions performed on Steps in StepFlow
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use stepflow_base::IdError;
use stepflow_data::var::VarId;
use stepflow_step::StepId;

#[derive(Debug, PartialEq, Clone)]
#[cfg_attr(feature = "serde-support", derive(serde::Serialize))]
pub enum ActionError {
  // ID errors
  VarId(IdError<VarId>),
  StepId(IdError<StepId>),
  Other,
}