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