[][src]Struct bodhi::query::stacks::StackNameQuery

pub struct StackNameQuery { /* fields omitted */ }

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

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

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

Methods

impl StackNameQuery[src]

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

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

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

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

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

Trait Implementations

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