[][src]Struct bodhi::query::releases::ReleaseNameQuery

pub struct ReleaseNameQuery { /* fields omitted */ }

Use this for querying bodhi for a specific release by its name.

let bodhi = bodhi::BodhiService::new(String::from(bodhi::FEDORA_BODHI_URL));

let comment = bodhi::ReleaseNameQuery::new(String::from("F30"))
    .query(&bodhi).unwrap();

Methods

impl ReleaseNameQuery[src]

pub fn new(name: String) -> ReleaseNameQuery[src]

This method is the only way to create a new ReleaseNameQuery instance.

pub fn query(self, bodhi: &BodhiService) -> Result<Release, String>[src]

This method will query the remote bodhi instance for the requested release by name, and will either return an Ok(Release) matching the specified name, or return an Err(String) if it doesn't exist, or if another error occurred.

TODO: return Result<Option<Release>, String>> to distinguish "not found" from errors

Trait Implementations

impl Debug for ReleaseNameQuery[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T

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

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