uv-distribution-types 0.0.6

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