[][src]Struct bodhi::query::users::UserNameQuery

pub struct UserNameQuery { /* fields omitted */ }

Use this for querying bodhi for a specific user by their name.

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

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

Methods

impl UserNameQuery[src]

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

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

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

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

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

Trait Implementations

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