pub struct GetSecretsByVault { /* private fields */ }Expand description
Provides streams of pages of types::SecretList, or of types::Secret directly.
Implementations§
Source§impl GetSecretsByVault
impl GetSecretsByVault
Sourcepub async fn pages(
self,
) -> impl Stream<Item = Result<SecretList, Error>> + Unpin
pub async fn pages( self, ) -> impl Stream<Item = Result<SecretList, Error>> + Unpin
Iterate over types::SecretList.
See Tokio Streams documentation for more info on usage.
Sourcepub async fn secrets(self) -> impl Stream<Item = Result<Secret, Error>> + Unpin
pub async fn secrets(self) -> impl Stream<Item = Result<Secret, Error>> + Unpin
Iterate over types::Secret items.
See Tokio Streams documentation for more info on usage.
Auto Trait Implementations§
impl Freeze for GetSecretsByVault
impl !RefUnwindSafe for GetSecretsByVault
impl Send for GetSecretsByVault
impl Sync for GetSecretsByVault
impl Unpin for GetSecretsByVault
impl !UnwindSafe for GetSecretsByVault
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