pub struct StaticCredentialsProvider { /* private fields */ }Expand description
A credentials provider that uses static, pre-configured credentials
This provider holds credentials that were provided at creation time and returns them on every request.
Implementations§
Source§impl StaticCredentialsProvider
impl StaticCredentialsProvider
Sourcepub fn new(credentials: Credentials) -> Self
pub fn new(credentials: Credentials) -> Self
Trait Implementations§
Source§impl Clone for StaticCredentialsProvider
impl Clone for StaticCredentialsProvider
Source§fn clone(&self) -> StaticCredentialsProvider
fn clone(&self) -> StaticCredentialsProvider
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl CredentialsProvider for StaticCredentialsProvider
impl CredentialsProvider for StaticCredentialsProvider
Source§fn provider_credentials(&self) -> Result<Credentials, LagoError>
fn provider_credentials(&self) -> Result<Credentials, LagoError>
Auto Trait Implementations§
impl Freeze for StaticCredentialsProvider
impl RefUnwindSafe for StaticCredentialsProvider
impl Send for StaticCredentialsProvider
impl Sync for StaticCredentialsProvider
impl Unpin for StaticCredentialsProvider
impl UnwindSafe for StaticCredentialsProvider
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more