Skip to main content

VersionOrSoname

Enum VersionOrSoname 

Source
pub enum VersionOrSoname {
    Version(PackageVersion),
    Soname(SharedObjectName),
}
Expand description

Provides either a PackageVersion or a SharedObjectName.

This enum is used when creating SonameV1.

Variants§

§

Version(PackageVersion)

A version for a SonameV1.

§

Soname(SharedObjectName)

A soname for a SonameV1.

Trait Implementations§

Source§

impl AlpmParser for VersionOrSoname

Source§

fn parser(input: &mut &str) -> ModalResult<Self>

Recognizes a PackageVersion or SharedObjectName in a string slice.

First attempts to recognize a SharedObjectName and if that fails, falls back to recognizing a PackageVersion.

§Errors

Returns an error if input does not begin with a valid SharedObjectName or PackageVersion.

Source§

fn delimiter_error_context<'a, O, P>( parser: P, ) -> impl Parser<&'a str, O, ErrMode<ContextError>>
where P: Parser<&'a str, O, ErrMode<ContextError>>,

Attaches a winnow error context to the parser when a parse error is encountered. Read more
Source§

impl Clone for VersionOrSoname

Source§

fn clone(&self) -> VersionOrSoname

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for VersionOrSoname

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for VersionOrSoname

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl FromStr for VersionOrSoname

Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Creates a VersionOrSoname from a string slice.

Delegates to VersionOrSoname::parser.

§Errors

Returns an error if VersionOrSoname::parser fails.

Source§

type Err = Error

The associated error which can be returned from parsing.
Source§

impl PartialEq for VersionOrSoname

Source§

fn eq(&self, other: &VersionOrSoname) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for VersionOrSoname

Source§

impl StructuralPartialEq for VersionOrSoname

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> AnyEq for T
where T: Any + PartialEq,

§

fn equals(&self, other: &(dyn Any + 'static)) -> bool

§

fn as_any(&self) -> &(dyn Any + 'static)

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<U> ParserUntil for U
where U: AlpmParser,

Source§

fn parser_until<'a, P>( delimiter: P, ) -> impl Parser<&'a str, U, ErrMode<ContextError>>
where P: Parser<&'a str, &'a str, ErrMode<ContextError>>,

Returns a [Parser] that parses Self until the given delimiter parser matches.

§Note

Does not consume the delimiter.

Source§

fn parser_until_eof(input: &mut &str) -> Result<Self, ErrMode<ContextError>>

Returns a [Parser] that parses an entire input. Read more
Source§

fn parser_until_line_ending( input: &mut &str, ) -> Result<Self, ErrMode<ContextError>>

Returns a [Parser] that parses until the end of line or [eof]. Read more
Source§

impl<U> ParserUntilInclusive for U
where U: ParserUntil,

Source§

fn parser_until_inclusive<'a, P>( delimiter: P, ) -> impl Parser<&'a str, U, ErrMode<ContextError>>
where P: Parser<&'a str, &'a str, ErrMode<ContextError>>,

Returns a [Parser] that parses the whole input and consumes the given delimiter parser.

Delegates to ParserUntil::parser_until and consumes the delimiter.

Source§

fn parser_until_line_ending_inclusive( input: &mut &str, ) -> Result<Self, ErrMode<ContextError>>

Returns a [Parser] that parses until the end of line and fully consumes it. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.