Skip to main content

workflow_egui/
result.rs

1/// Convenience result type used throughout the crate, with the error fixed to
2/// the crate's own [`Error`](crate::error::Error).
3pub type Result<T> = std::result::Result<T, crate::error::Error>;