[][src]Struct fedora_update_feedback::NVR

pub struct NVR {
    pub n: String,
    pub v: String,
    pub r: String,
}

This struct encapsulates a parsed NVR string.

Fields

n: String

name of the package

v: String

version of the package

r: String

release of the package

Trait Implementations

impl Debug for NVR[src]

impl Display for NVR[src]

impl PartialEq<NVR> for NVR[src]

impl StructuralPartialEq for NVR[src]

Auto Trait Implementations

impl RefUnwindSafe for NVR

impl Send for NVR

impl Sync for NVR

impl Unpin for NVR

impl UnwindSafe for NVR

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,