Skip to main content

workflow_node/
result.rs

1//! [`Result`] enum encapsulating the node [`Error`](crate::error::Error) enum
2
3/// Result type used throughout this crate, with the error fixed to the node
4/// [`Error`](crate::error::Error) enum.
5pub type Result<T> = std::result::Result<T, crate::error::Error>;