rototo 0.1.0-alpha.8

Control plane for runtime configuration of your application.
Documentation
1
2
3
4
5
6
7
8
9
use crate::address::Address;

/// What a registered custom lint rule runs against: an address from the
/// package addressing grammar (`src/address.rs`), depth-checked at
/// registration time by `parse_registered_lint_selector`.
#[derive(Clone)]
pub(in crate::lint) struct RegisteredLintSelector {
    pub(in crate::lint) address: Address,
}