aboutsummaryrefslogtreecommitdiff
path: root/vendor/clap_builder/src/builder/arg_predicate.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/clap_builder/src/builder/arg_predicate.rs')
-rw-r--r--vendor/clap_builder/src/builder/arg_predicate.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/vendor/clap_builder/src/builder/arg_predicate.rs b/vendor/clap_builder/src/builder/arg_predicate.rs
deleted file mode 100644
index bc79a11..0000000
--- a/vendor/clap_builder/src/builder/arg_predicate.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-use crate::builder::OsStr;
-
-/// Operations to perform on argument values
-///
-/// These do not apply to [`ValueSource::DefaultValue`][crate::parser::ValueSource::DefaultValue]
-#[derive(Clone, Debug, PartialEq, Eq)]
-#[cfg_attr(feature = "unstable-v5", non_exhaustive)]
-pub enum ArgPredicate {
- /// Is the argument present?
- IsPresent,
- /// Does the argument match the specified value?
- Equals(OsStr),
-}
-
-impl<S: Into<OsStr>> From<S> for ArgPredicate {
- fn from(other: S) -> Self {
- Self::Equals(other.into())
- }
-}