pub struct ClientConfiguration { /* private fields */ }
Expand description

All the config data that’s parsed from config sources

Implementations§

source§

impl ClientConfiguration

source

pub fn builder() -> ClientConfigurationBuilder

Create a new configuration builder with the given tokens.

source

pub fn api_url(&self) -> &str

URL to access the QCS API. Defaults to DEFAULT_API_URL.

source

pub fn grpc_api_url(&self) -> &str

URL to access the gRPC API. Defaults to the value of the QCS_SETTINGS_APPLICATIONS_GRPC_URL environment variable if set, DEFAULT_GRPC_API_URL otherwise.

source

pub fn quilc_url(&self) -> &str

URL to access quilc. Defaults to the value of the QCS_SETTINGS_APPLICATIONS_QUILC_URL environment variable if set, DEFAULT_QUILC_URL otherwise.

source

pub fn qvm_url(&self) -> &str

URL to access QVM. Defaults to the value of the QCS_SETTINGS_APPLICATIONS_QVM_URL environment variable if set, DEFAULT_QVM_URL otherwise.

source§

impl ClientConfiguration

source

pub async fn load_default() -> Result<Self, LoadError>

Attempt to load config files from ~/.qcs and create a Configuration object for use with the QCS API using the default profile.

See https://docs.rigetti.com/qcs/references/qcs-client-configuration for details.

§Errors

See LoadError.

source

pub async fn load_profile(profile_name: String) -> Result<Self, LoadError>

Attempt to load config files from ~/.qcs and create a Configuration object for use with the QCS API using the specified profile.

See https://docs.rigetti.com/qcs/references/qcs-client-configuration for details.

§Errors

See LoadError.

source

pub async fn get_bearer_access_token(&self) -> Result<String, RefreshError>

Gets the Bearer access token, refreshing it if expired.

§Errors

See RefreshError.

source

pub async fn refresh(&self) -> Result<String, RefreshError>

Refresh the authentication tokens and return the new access token if successful.

§Errors

See RefreshError.

Trait Implementations§

source§

impl Clone for ClientConfiguration

source§

fn clone(&self) -> ClientConfiguration

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ClientConfiguration

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ClientConfiguration

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl From<ClientConfiguration> for ClientConfigurationBuilder

source§

fn from(config: ClientConfiguration) -> Self

Converts to this type from the input type.
source§

impl TokenRefresher for ClientConfiguration

§

type Error = RefreshError

The type to be returned in the event of a error during getting or refreshing an access token
source§

fn refresh_access_token<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<String, Self::Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Get a fresh access token
source§

fn get_access_token<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<String, Self::Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Get the current access token

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

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
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more