[][src]Struct nakadion::auth::FixedAccessTokenProvider

pub struct FixedAccessTokenProvider { /* fields omitted */ }

Always returns the same token.

Simply clone it around.

Methods

impl FixedAccessTokenProvider[src]

pub fn new<P: Into<String>>(token: P) -> Self[src]

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

Create a new FixedAccessTokenProvider initializes the token with the the value of the given env var NAKADION_ACCESS_TOKEN_FIXED.

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

Create a new FixedAccessTokenProvider initializes the token with the the value of the given env var <prefix>_ACCESS_TOKEN_FIXED.

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

Create a new FixedAccessTokenProvider initializes the token with the the value of the given env var name.

Trait Implementations

impl Clone for FixedAccessTokenProvider[src]

impl ProvidesAccessToken for FixedAccessTokenProvider[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,