pedant-core 0.20.2

Analysis engine for pedant: IR extraction, style checks, and capability detection
Documentation
1
2
3
4
5
6
7
8
9
10
//! The Cargo target input that starts one module-closure walk.

use crate::resolution::rust::edition::CargoEdition;

/// The Cargo target one closure starts from.
pub(in crate::resolution::rust::snapshot) struct ClosureEntry<'a> {
    pub(in crate::resolution::rust::snapshot) target_name: &'a str,
    pub(in crate::resolution::rust::snapshot) entry_path: &'a str,
    pub(in crate::resolution::rust::snapshot) edition: CargoEdition,
}