[−][src]Struct osauth::BasicAuth
Authentication type that uses HTTP basic authentication.
This type always uses a pre-defined endpoint:
let auth = osauth::BasicAuth::new("https://cloud.local/baremetal", "username", "password") .expect("Invalid endpoint URL"); let session = osauth::Session::new(auth);
Implementations
impl BasicAuth
[src][−]
pub fn new<U, S1, S2>(
endpoint: U,
username: S1,
password: S2
) -> Result<BasicAuth, Error> where
U: IntoUrl,
S1: Into<String>,
S2: Into<String>,
[src][−]
endpoint: U,
username: S1,
password: S2
) -> Result<BasicAuth, Error> where
U: IntoUrl,
S1: Into<String>,
S2: Into<String>,
Create a new HTTP basic 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, S1, S2>(
endpoint: U,
client: Client,
username: S1,
password: S2
) -> Result<BasicAuth, Error> where
U: IntoUrl,
S1: Into<String>,
S2: Into<String>,
[src][−]
endpoint: U,
client: Client,
username: S1,
password: S2
) -> Result<BasicAuth, Error> where
U: IntoUrl,
S1: Into<String>,
S2: Into<String>,
Create a new HTTP basic authentication method using a fixed endpoint and an HTTP client.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for BasicAuth
impl Send for BasicAuth
impl Sync for BasicAuth
impl Unpin for BasicAuth
impl !UnwindSafe for BasicAuth
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,
impl<T> From<T> for T
[src][+]
impl<T> Instrument for T
[src][+]
impl<T> Instrument for T
[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,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,