ControllerData
2025年3月26日小于 1 分钟hyperlanewebrusttypecontroller_data
提示
hyperlane
框架的 ControllerData
作为中间件和路由处理函数的唯一的参数类型,具体类型定义如下
pub type RwLockWriteInnerControllerData<'a> = RwLockWriteGuard<'a, InnerControllerData>;
pub type RwLockReadInnerControllerData<'a> = RwLockReadGuard<'a, InnerControllerData>;
#[derive(Clone, Lombok, Default)]
pub struct InnerControllerData {
stream: OptionArcRwLockStream,
request: Request,
response: Response,
log: Log,
}
#[derive(Clone, Default)]
pub struct ControllerData(pub(super) ArcRwLock<InnerControllerData>);