workflow-store 0.19.0

File storage access crate abstracting file I/O and browser localstorage
Documentation
1
2
3
4
//! [`Result`] type alias
/// Result type alias used throughout this crate, defaulting the error type
/// to the crate's [`Error`](crate::error::Error).
pub type Result<T> = std::result::Result<T, crate::error::Error>;