automata/fsevent/op
Values
pub fn combine(
left left: set.Set(ast.Op),
right right: set.Set(ast.Op),
) -> set.Set(ast.Op)
Union of two op sets.
pub fn empty_ops() -> set.Set(ast.Op)
The empty op set. Used by WatchEvent constructors that build up
op sets incrementally.
pub fn op_to_string(op op: ast.Op) -> String
Render an op as one of "CREATE", "WRITE", "REMOVE",
"RENAME", "CHMOD".
pub fn ops_from_list(ops ops: List(ast.Op)) -> set.Set(ast.Op)
Build an op set from a list. Duplicates are collapsed (set semantics).