pub trait ControllerFactory {
// Required method
fn build(
self: Arc<Self>,
now: Instant,
current_mtu: u16,
) -> Box<dyn Controller>;
}展开描述
按需构造控制器
pub trait ControllerFactory {
// Required method
fn build(
self: Arc<Self>,
now: Instant,
current_mtu: u16,
) -> Box<dyn Controller>;
}按需构造控制器