oxigdal-workflow 0.1.4

DAG-based workflow engine for complex geospatial processing pipelines
Documentation
//! # TaskStatus - Trait Implementations
//!
//! This module contains trait implementations for `TaskStatus`.
//!
//! ## Implemented Traits
//!
//! - `Default`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

use super::types::TaskStatus;

impl Default for TaskStatus {
    fn default() -> Self {
        Self::WaitingDependencies {
            pending_deps: Vec::new(),
        }
    }
}