pub trait Track<T, E>: Sealed {
// Required methods
fn t(self) -> Result<T, StringError>;
fn t_named(self, name: &str) -> Result<T, StringError>;
}Expand description
Provides the t (“track”) method for bool, Option, and Result.
pub trait Track<T, E>: Sealed {
// Required methods
fn t(self) -> Result<T, StringError>;
fn t_named(self, name: &str) -> Result<T, StringError>;
}Provides the t (“track”) method for bool, Option, and Result.