1use flow_gate_core::{gate::GateKind, GateId}; 2 3#[derive(Debug, Clone)] 4pub struct NamedGate { 5 pub id: GateId, 6 pub gate: GateKind, 7}