pub struct RemoteBuildExecution<S> {
pub client: Client<S, Body>,
pub auth: Authenticator<S>,
/* private fields */
}Expand description
Central instance to access all RemoteBuildExecution related resource activities
Examples
Instantiate a new hub
extern crate hyper;
extern crate hyper_rustls;
extern crate google_remotebuildexecution2 as remotebuildexecution2;
use remotebuildexecution2::{Result, Error};
use std::default::Default;
use remotebuildexecution2::{RemoteBuildExecution, oauth2, hyper, hyper_rustls};
// Get an ApplicationSecret instance by some means. It contains the `client_id` and
// `client_secret`, among other things.
let secret: oauth2::ApplicationSecret = Default::default();
// Instantiate the authenticator. It will choose a suitable authentication flow for you,
// unless you replace `None` with the desired Flow.
// Provide your own `AuthenticatorDelegate` to adjust the way it operates and get feedback about
// what's going on. You probably want to bring in your own `TokenStorage` to persist tokens and
// retrieve them from storage.
let auth = oauth2::InstalledFlowAuthenticator::builder(
secret,
oauth2::InstalledFlowReturnMethod::HTTPRedirect,
).build().await.unwrap();
let mut hub = RemoteBuildExecution::new(hyper::Client::builder().build(hyper_rustls::HttpsConnectorBuilder::new().with_native_roots().https_or_http().enable_http1().enable_http2().build()), auth);
// You can configure optional parameters by calling the respective setters at will, and
// execute the final call using `doit()`.
// Values shown here are possibly random and not representative !
let result = hub.action_results().get("instanceName", "hash", "sizeBytes")
.inline_stdout(true)
.inline_stderr(false)
.add_inline_output_files("amet")
.doit().await;
match result {
Err(e) => match e {
// The Error enum provides details about what exactly happened.
// You can also just use its `Debug`, `Display` or `Error` traits
Error::HttpError(_)
|Error::Io(_)
|Error::MissingAPIKey
|Error::MissingToken(_)
|Error::Cancelled
|Error::UploadSizeLimitExceeded(_, _)
|Error::Failure(_)
|Error::BadRequest(_)
|Error::FieldClash(_)
|Error::JsonDecodeError(_, _) => println!("{}", e),
},
Ok(res) => println!("Success: {:?}", res),
}Fields
client: Client<S, Body>auth: Authenticator<S>Implementations
sourceimpl<'a, S> RemoteBuildExecution<S>
impl<'a, S> RemoteBuildExecution<S>
pub fn new(
client: Client<S, Body>,
authenticator: Authenticator<S>
) -> RemoteBuildExecution<S>
pub fn action_results(&'a self) -> ActionResultMethods<'a, S>
pub fn actions(&'a self) -> ActionMethods<'a, S>
pub fn blobs(&'a self) -> BlobMethods<'a, S>
pub fn methods(&'a self) -> MethodMethods<'a, S>
pub fn operations(&'a self) -> OperationMethods<'a, S>
sourcepub fn user_agent(&mut self, agent_name: String) -> String
pub fn user_agent(&mut self, agent_name: String) -> String
Set the user-agent header field to use in all requests to the server.
It defaults to google-api-rust-client/4.0.1.
Returns the previously set user-agent.
Trait Implementations
sourceimpl<S: Clone> Clone for RemoteBuildExecution<S>
impl<S: Clone> Clone for RemoteBuildExecution<S>
sourcefn clone(&self) -> RemoteBuildExecution<S>
fn clone(&self) -> RemoteBuildExecution<S>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
impl<'a, S> Hub for RemoteBuildExecution<S>
Auto Trait Implementations
impl<S> !RefUnwindSafe for RemoteBuildExecution<S>
impl<S> Send for RemoteBuildExecution<S>where
S: Send + Sync,
impl<S> Sync for RemoteBuildExecution<S>where
S: Send + Sync,
impl<S> Unpin for RemoteBuildExecution<S>where
S: Unpin,
impl<S> !UnwindSafe for RemoteBuildExecution<S>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more