[][src]Struct nakadion::auth::NoAuthAccessTokenProvider

pub struct NoAuthAccessTokenProvider;

Using this access token provider disables OAUTH.

Methods

impl NoAuthAccessTokenProvider[src]

pub fn from_env() -> Result<Self, Error>[src]

Initializes from the env var NAKADION_ACCESS_TOKEN_ALLOW_NONE.

The env var must exist and must be set to true to not make this function fail.

pub fn from_env_prefixed<T: AsRef<str>>(prefix: T) -> Result<Self, Error>[src]

Initializes from the env var <prefix>_ACCESS_TOKEN_ALLOW_NONE.

The env var must exist and must be set to true to not make this function fail.

pub fn from_env_named<T: AsRef<str>>(name: T) -> Result<Self, Error>[src]

Initializes from the env var name.

The env var must exist and must be set to true to not make this function fail.

Trait Implementations

impl ProvidesAccessToken for NoAuthAccessTokenProvider[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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