uv_distribution_types/origin.rs
1/// The origin of a piece of configuration.
2#[derive(Debug, Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd)]
3pub enum Origin {
4 /// The setting was provided via the CLI.
5 Cli,
6 /// The setting was provided via a user-level configuration file.
7 User,
8 /// The setting was provided via a project-level configuration file.
9 Project,
10 /// The setting was provided via a `requirements.txt` file.
11 RequirementsTxt,
12}