pub trait AsMoreError<T> {
// Required methods
fn as_m(
self,
file_line_func_text: (&str, u32, &str, &str),
) -> Result<T, MoreError>;
fn to_m(self) -> Result<T, MoreError>;
}Expand description
给 Error, … 增加更多信息, 但抛弃 Error, … 自身的内容