Crates.io | wrkflw-models |
lib.rs | wrkflw-models |
version | 0.7.3 |
created_at | 2025-08-09 12:19:46.248644+00 |
updated_at | 2025-08-28 07:31:44.393869+00 |
description | Data models and structures for wrkflw workflow execution engine |
homepage | https://github.com/bahdotsh/wrkflw |
repository | https://github.com/bahdotsh/wrkflw |
max_upload_size | |
id | 1787879 |
size | 17,771 |
Common data structures shared across crates.
ValidationResult
for structural/semantic checksuse wrkflw_models::ValidationResult;
let mut res = ValidationResult::new();
res.add_issue("missing jobs".into());
assert!(!res.is_valid);