pub type DagResult<T> = Result<T, DagError>;
Result type for DAG operations
pub enum DagResult<T> { Ok(T), Err(DagError), }
Contains the success value
Contains the error value