pub struct RotatingCredentials { /* private fields */ }Expand description
Credentials that can be rotated
This struct can be cloned and shared around the rest of
the application and will always yield the latest credentials,
by calling RotatingCredentials::get.
Credentials can be updated by calling RotatingCredentials::update.
Implementations§
Trait Implementations§
Source§impl Clone for RotatingCredentials
impl Clone for RotatingCredentials
Source§impl Debug for RotatingCredentials
impl Debug for RotatingCredentials
Source§impl PartialEq for RotatingCredentials
impl PartialEq for RotatingCredentials
Auto Trait Implementations§
impl Freeze for RotatingCredentials
impl RefUnwindSafe for RotatingCredentials
impl Send for RotatingCredentials
impl Sync for RotatingCredentials
impl Unpin for RotatingCredentials
impl UnwindSafe for RotatingCredentials
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