mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-19 08:40:39 +00:00
7 lines
245 B
Rust
7 lines
245 B
Rust
#[derive(Debug, Clone)]
|
|
pub struct StarImport<'a> {
|
|
/// The level of the import. `0` indicates an absolute import.
|
|
pub level: u32,
|
|
/// The module being imported. `None` indicates a wildcard import.
|
|
pub module: Option<&'a str>,
|
|
}
|