odoo-lsp 0.6.2

Language server for Odoo Python/JS/XML
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::sync::atomic::AtomicBool;

use crate::{ImStr, index::ModuleName};

#[derive(Debug)]
pub struct ModuleEntry {
	/// Path relative to root
	pub path: ImStr,
	pub dependencies: Box<[ModuleName]>,
	pub auto_install: bool,
	pub loaded: AtomicBool,
	pub loaded_dependents: AtomicBool,
}