Struct openstack::auth::Token

source ·
pub struct Token { /* private fields */ }
Expand description

Token authentication using Identity API V3.

For any Identity authentication you need to know auth_url, which is an authentication endpoint of the Identity service. For the Token authentication you also need:

  1. Existing authentication token.
  2. Name of the project to use.
  3. Domain of the project.

Start with creating a Token object using new, then add a project scope with with_project_scope:

use osauth::common::IdOrName;
let auth = osauth::identity::Token::new(
    "https://cloud.local/identity",
    "<a token>",
)
.expect("Invalid auth_url")
.with_project_scope(IdOrName::from_name("project1"), IdOrName::from_id("default"));

let session = osauth::Session::new(auth);

The authentication token is cached while it’s still valid or until refresh is called. Clones of a Token also start with an empty cache.

Implementations§

source§

impl Token

source

pub fn new<U, S>(auth_url: U, token: S) -> Result<Token, Error>where U: AsRef<str>, S: Into<String>,

Create a token authentication.

source

pub fn set_project_scope( &mut self, project: IdOrName, domain: impl Into<Option<IdOrName>> )

Scope authentication to the given project.

A convenience wrapper around set_scope.

source

pub fn set_scope(&mut self, scope: Scope)

Add a scope to the authentication.

This is required in the most cases.

source

pub fn with_project_scope( self, project: IdOrName, domain: impl Into<Option<IdOrName>> ) -> Token

Scope authentication to the given project.

A convenience wrapper around with_scope.

source

pub fn with_scope(self, scope: Scope) -> Token

Add a scope to the authentication.

source

pub fn project(&self) -> Option<&IdOrName>

Project name or ID (if project scoped).

Trait Implementations§

source§

impl AuthType for Token

source§

fn authenticate<'life0, 'life1, 'async_trait>( &'life0 self, client: &'life1 Client, request: RequestBuilder ) -> Pin<Box<dyn Future<Output = Result<RequestBuilder, Error>> + Send + 'async_trait, Global>>where 'life0: 'async_trait, 'life1: 'async_trait, Token: 'async_trait,

Authenticate a request.

source§

fn get_endpoint<'life0, 'life1, 'life2, 'life3, 'async_trait>( &'life0 self, client: &'life1 Client, service_type: &'life2 str, filters: &'life3 EndpointFilters ) -> Pin<Box<dyn Future<Output = Result<Url, Error>> + Send + 'async_trait, Global>>where 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait, Token: 'async_trait,

Get a URL for the requested service.

source§

fn refresh<'life0, 'life1, 'async_trait>( &'life0 self, client: &'life1 Client ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait, Global>>where 'life0: 'async_trait, 'life1: 'async_trait, Token: 'async_trait,

Refresh the cached token and service catalog.

source§

impl Clone for Token

source§

fn clone(&self) -> Token

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 Token

source§

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

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

impl TryFrom<CloudConfig> for Token

§

type Error = Error

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

fn try_from(value: CloudConfig) -> Result<Token, Error>

Performs the conversion.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Token

§

impl Send for Token

§

impl Sync for Token

§

impl Unpin for Token

§

impl UnwindSafe for Token

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · 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 Twhere U: From<T>,

const: unstable · 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 Twhere 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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
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