pub type Layer3Result<T> = Result<T>;
Layer 3 Result 类型
pub enum Layer3Result<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value