[−][src]Struct openstack::auth::NoAuth
Authentication type that provides no authentication.
This type always uses a pre-defined endpoint and sends no authenticaiton information:
let auth = osauth::NoAuth::new("https://cloud.local/baremetal") .expect("Invalid auth URL"); let session = osauth::Session::new(auth);
Implementations
impl NoAuth
[src]
pub fn new<U>(endpoint: U) -> Result<NoAuth, Error> where
U: IntoUrl,
[src]
U: IntoUrl,
Create a new fake authentication method using a fixed endpoint.
This endpoint will be returned in response to all get_endpoint
calls
of the AuthType trait.
pub fn new_with_client<U>(endpoint: U, client: Client) -> Result<NoAuth, Error> where
U: IntoUrl,
[src]
U: IntoUrl,
Create a new fake authentication method using a fixed endpoint and an HTTP client.
Trait Implementations
impl AuthType for NoAuth
[src]
fn request<'life0, 'async_trait>(
&'life0 self,
method: Method,
url: Url
) -> Pin<Box<dyn Future<Output = Result<RequestBuilder, Error>> + 'async_trait + Send>> where
'life0: 'async_trait,
NoAuth: 'async_trait,
[src]
&'life0 self,
method: Method,
url: Url
) -> Pin<Box<dyn Future<Output = Result<RequestBuilder, Error>> + 'async_trait + Send>> where
'life0: 'async_trait,
NoAuth: 'async_trait,
Create a request.
fn get_endpoint<'life0, 'async_trait>(
&'life0 self,
_service_type: String,
_filters: EndpointFilters
) -> Pin<Box<dyn Future<Output = Result<Url, Error>> + 'async_trait + Send>> where
'life0: 'async_trait,
NoAuth: 'async_trait,
[src]
&'life0 self,
_service_type: String,
_filters: EndpointFilters
) -> Pin<Box<dyn Future<Output = Result<Url, Error>> + 'async_trait + Send>> where
'life0: 'async_trait,
NoAuth: 'async_trait,
Get a predefined endpoint for all service types
fn refresh<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + 'async_trait + Send>> where
'life0: 'async_trait,
NoAuth: 'async_trait,
[src]
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + 'async_trait + Send>> where
'life0: 'async_trait,
NoAuth: 'async_trait,
This call does nothing for NoAuth
.
fn default_filters(&self) -> Option<&EndpointFilters>
[src]
impl Clone for NoAuth
[src]
impl Debug for NoAuth
[src]
Auto Trait Implementations
impl !RefUnwindSafe for NoAuth
impl Send for NoAuth
impl Sync for NoAuth
impl Unpin for NoAuth
impl !UnwindSafe for NoAuth
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,