pub type Layer2Result<T> = Result<T>;
统一的 Layer 2 Result 类型
pub enum Layer2Result<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value