pub enum VersionComparison {
LessOrEqual,
GreaterOrEqual,
Equal,
Less,
Greater,
}
Expand description
Specifies the comparison function for a VersionRequirement
.
The package version can be required to be:
- less than (
<
) - less than or equal to (
<=
) - equal to (
=
) - greater than or equal to (
>=
) - greater than (
>
)
the specified version.
See alpm-comparison for details on the format.
§Note
The variants of this enum are sorted in a way, that prefers the two-letter comparators over
the one-letter ones.
This is because when splitting a string on the string representation of VersionComparison
variant and relying on the ordering of [strum::EnumIter
], the two-letter comparators must be
checked before checking the one-letter ones to yield robust results.
Variants§
LessOrEqual
Less than or equal to
GreaterOrEqual
Greater than or equal to
Equal
Equal to
Less
Less than
Greater
Greater than
Implementations§
Source§impl VersionComparison
impl VersionComparison
Sourcefn is_compatible_with(self, ord: Ordering) -> bool
fn is_compatible_with(self, ord: Ordering) -> bool
Returns true
if the result of a comparison between the actual and required package
versions satisfies the comparison function.
Sourcepub fn parser(input: &mut &str) -> ModalResult<Self>
pub fn parser(input: &mut &str) -> ModalResult<Self>
Recognizes a VersionComparison
in a string slice.
Consumes all of its input.
§Errors
Returns an error if input
is not a valid alpm-comparison.
Trait Implementations§
Source§impl AsRef<str> for VersionComparison
impl AsRef<str> for VersionComparison
Source§impl Clone for VersionComparison
impl Clone for VersionComparison
Source§fn clone(&self) -> VersionComparison
fn clone(&self) -> VersionComparison
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for VersionComparison
impl Debug for VersionComparison
Source§impl<'de> Deserialize<'de> for VersionComparison
impl<'de> Deserialize<'de> for VersionComparison
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Display for VersionComparison
impl Display for VersionComparison
Source§impl FromStr for VersionComparison
impl FromStr for VersionComparison
Source§fn from_str(s: &str) -> Result<Self, Self::Err>
fn from_str(s: &str) -> Result<Self, Self::Err>
Creates a new VersionComparison
from a string slice.
Delegates to VersionComparison::parser
.
§Errors
Returns an error if VersionComparison::parser
fails.