[][src]Struct osproto::common::Version

pub struct Version {
    pub id: XdotY<u16>,
    pub links: Vec<Link>,
    pub status: Option<String>,
    pub version: Option<XdotY<u16>>,
    pub min_version: Option<XdotY<u16>>,
}

A single API version as returned by a version discovery endpoint.

Fields

id: XdotY<u16>links: Vec<Link>status: Option<String>version: Option<XdotY<u16>>min_version: Option<XdotY<u16>>

Implementations

impl Version[src]

pub fn is_stable(&self) -> bool[src]

Whether a version is considered stable according to its status.

Trait Implementations

impl Clone for Version[src]

impl Debug for Version[src]

impl<'de> Deserialize<'de> for Version[src]

impl Eq for Version[src]

impl Ord for Version[src]

impl PartialEq<Version> for Version[src]

impl PartialOrd<Version> for Version[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.