Skip to main content

flow_gate_xml/schema/
gating.rs

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