/// Information about the operator being constructed
pubstructOperatorInfo{/// Scope-local index assigned to the operator being constructed.
publocal_id:usize,
/// Worker-unique identifier.
pubglobal_id:usize,
}implOperatorInfo{/// Construct a new `OperatorInfo`.
pubfnnew(local_id:usize, global_id:usize)-> OperatorInfo{
OperatorInfo {
local_id,
global_id,}}}