[][src]Struct bodhi::query::updates::UpdateIDQuery

pub struct UpdateIDQuery { /* fields omitted */ }

Use this for querying bodhi for a specific update by its ID, title, or alias.

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

let update = bodhi::UpdateIDQuery::new(String::from("FEDORA-2019-3dd0cf468e"))
    .query(&bodhi).unwrap();

Methods

impl UpdateIDQuery[src]

pub fn new(id: String) -> UpdateIDQuery[src]

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

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

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

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

Trait Implementations

impl Debug for UpdateIDQuery[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