LCOV - code coverage report
Current view: top level - libs/remote_storage/src - support.rs (source / functions) Coverage Total Hit
Test: aca8877be6ceba750c1be359ed71bc1799d52b30.info Lines: 66.7 % 9 6
Test Date: 2024-02-14 18:05:35 Functions: 33.3 % 6 2

            Line data    Source code
       1              : use std::{
       2              :     pin::Pin,
       3              :     task::{Context, Poll},
       4              : };
       5              : 
       6              : use futures_util::Stream;
       7              : 
       8              : pin_project_lite::pin_project! {
       9              :     /// An `AsyncRead` adapter which carries a permit for the lifetime of the value.
      10              :     pub(crate) struct PermitCarrying<S> {
      11              :         permit: tokio::sync::OwnedSemaphorePermit,
      12              :         #[pin]
      13              :         inner: S,
      14              :     }
      15              : }
      16              : 
      17              : impl<S> PermitCarrying<S> {
      18        10252 :     pub(crate) fn new(permit: tokio::sync::OwnedSemaphorePermit, inner: S) -> Self {
      19        10252 :         Self { permit, inner }
      20        10252 :     }
      21              : }
      22              : 
      23              : impl<S: Stream> Stream for PermitCarrying<S> {
      24              :     type Item = <S as Stream>::Item;
      25              : 
      26       164202 :     fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
      27       164202 :         self.project().inner.poll_next(cx)
      28       164202 :     }
      29              : 
      30            0 :     fn size_hint(&self) -> (usize, Option<usize>) {
      31            0 :         self.inner.size_hint()
      32            0 :     }
      33              : }
        

Generated by: LCOV version 2.1-beta