[][src]Struct nakadion::auth::FileAccessTokenProvider

pub struct FileAccessTokenProvider { /* fields omitted */ }

Reads an AccessToken from a file.

Simply clone it around.

Implementations

impl FileAccessTokenProvider[src]

pub fn new<P: Into<PathBuf>>(path: P) -> Self[src]

Create a new FileAccessTokenProvider which reads the token from a file at the given path.

The existence of the file at the given path is not checked.

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

Create a new FileAccessTokenProvider which reads the token from a file at the given path.

The path must be a fully qualified file path contained in the env var NAKADION_ACCESS_TOKEN_PATH.

The existence of the file at the given path is not checked.

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

Create a new FileAccessTokenProvider which reads the token from a file at the given path.

The path must be a fully qualified file path contained in the env var <prefix>_ACCESS_TOKEN_PATH.

The existence of the file at the given path is not checked.

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

Create a new FileAccessTokenProvider which reads the token from a file at the given path.

The path must be a fully qualified file path contained in the env var name.

The existence of the file at the given path is not checked.

Trait Implementations

impl Clone for FileAccessTokenProvider[src]

impl ProvidesAccessToken for FileAccessTokenProvider[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>,