cmake_parser/doc/
command_scope.rs1pub trait ToCommandScope {
2 fn to_command_scope(&self) -> CommandScope;
3}
4
5#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
6pub enum CommandScope {
7 Scripting,
8 Project,
9 CTest,
10 Deprecated,
11}