Struct taskcluster::Client[][src]

pub struct Client { /* fields omitted */ }

Client is the entry point into all the functionality in this package. It contains authentication credentials, and a service endpoint, which are required for all HTTP operations.

Implementations

impl Client[src]

pub async fn request(
    &self,
    method: &str,
    path: &str,
    query: Option<Vec<(&str, &str)>>,
    body: Option<&Value>
) -> Result<Response, Error>
[src]

Make a request to a Taskcluster deployment. While the per-service methods are generally more convenient, this method can be used to call a path on the deployment directly.

The request URI is <root_url>/<path_prefix>/<path>. The path parameter must not start with /.

This will automatically retry on server-side errors and return an error for client errors. Success and redirection responses are treated as OK.

pub fn make_url(
    &self,
    path: &str,
    query: Option<Vec<(&str, &str)>>
) -> Result<String>
[src]

Make a URL for the given path, constructed as for request. The path should not begin with a /.

pub fn make_signed_url(
    &self,
    path: &str,
    query: Option<Vec<(&str, &str)>>,
    ttl: Duration
) -> Result<String>
[src]

Make a signed URL for the given path, constructed as for request. The path should not begin with a /. The URL will be valid for the given duration, and carries the client’s scopes (including any authorized_scopes setting).

Auto Trait Implementations

impl !RefUnwindSafe for Client

impl Send for Client

impl Sync for Client

impl Unpin for Client

impl !UnwindSafe for Client

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> From<T> for T[src]

impl<T> Instrument 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.