stepflow-base 0.0.5

Base components for StepFlow
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Debug, PartialEq, Clone)]
#[cfg_attr(feature="serde-support", derive(serde::Serialize))]
pub enum IdError<TID> {
  CannotParse(String),
  IdNotReserved(TID),
  IdAlreadyExists(TID),
  IdMissing(TID),
  IdUnexpected(TID),
  IdHasNoName(TID),
  NameAlreadyExists(String),
  NoSuchName(String),
}