1 2 3 4 5 6 7 8 9 10 11
/// Supported plugin language identifier — identifies the language/runtime hosting plugins. #[repr(u32)] #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum SupportedLanguage { Rust = 0, Cpp = 1, Dotnet = 2, Python = 3, Lua = 4, JavaScript = 5, }