pub struct LruCacheAccess<I, C> {
inner: I,
read_cache: ReadCache<C>,
}
Fields§
§inner: I
§read_cache: ReadCache<C>
Trait Implementations§
Source§impl<I: Access, C: Access> LayeredAccess for LruCacheAccess<I, C>
impl<I: Access, C: Access> LayeredAccess for LruCacheAccess<I, C>
type Inner = I
type Reader = Box<dyn ReadDyn>
type BlockingReader = <I as Access>::BlockingReader
type Writer = <I as Access>::Writer
type BlockingWriter = <I as Access>::BlockingWriter
type Lister = <I as Access>::Lister
type BlockingLister = <I as Access>::BlockingLister
type Deleter = CacheAwareDeleter<C, <I as Access>::Deleter>
type BlockingDeleter = <I as Access>::BlockingDeleter
fn inner(&self) -> &Self::Inner
async fn read(&self, path: &str, args: OpRead) -> Result<(RpRead, Self::Reader)>
async fn write( &self, path: &str, args: OpWrite, ) -> Result<(RpWrite, Self::Writer)>
async fn delete(&self) -> Result<(RpDelete, Self::Deleter)>
async fn list(&self, path: &str, args: OpList) -> Result<(RpList, Self::Lister)>
fn blocking_read( &self, path: &str, args: OpRead, ) -> Result<(RpRead, Self::BlockingReader)>
fn blocking_write( &self, path: &str, args: OpWrite, ) -> Result<(RpWrite, Self::BlockingWriter)>
fn blocking_list( &self, path: &str, args: OpList, ) -> Result<(RpList, Self::BlockingLister)>
fn blocking_delete(&self) -> Result<(RpDelete, Self::BlockingDeleter)>
fn info(&self) -> Arc<AccessorInfo>
fn create_dir( &self, path: &str, args: OpCreateDir, ) -> impl Future<Output = Result<RpCreateDir, Error>> + MaybeSend
fn copy( &self, from: &str, to: &str, args: OpCopy, ) -> impl Future<Output = Result<RpCopy, Error>> + MaybeSend
fn rename( &self, from: &str, to: &str, args: OpRename, ) -> impl Future<Output = Result<RpRename, Error>> + MaybeSend
fn stat( &self, path: &str, args: OpStat, ) -> impl Future<Output = Result<RpStat, Error>> + MaybeSend
fn presign( &self, path: &str, args: OpPresign, ) -> impl Future<Output = Result<RpPresign, Error>> + MaybeSend
fn blocking_create_dir( &self, path: &str, args: OpCreateDir, ) -> Result<RpCreateDir, Error>
fn blocking_copy( &self, from: &str, to: &str, args: OpCopy, ) -> Result<RpCopy, Error>
fn blocking_rename( &self, from: &str, to: &str, args: OpRename, ) -> Result<RpRename, Error>
fn blocking_stat(&self, path: &str, args: OpStat) -> Result<RpStat, Error>
Auto Trait Implementations§
impl<I, C> Freeze for LruCacheAccess<I, C>where
I: Freeze,
impl<I, C> !RefUnwindSafe for LruCacheAccess<I, C>
impl<I, C> Send for LruCacheAccess<I, C>
impl<I, C> Sync for LruCacheAccess<I, C>
impl<I, C> Unpin for LruCacheAccess<I, C>where
I: Unpin,
impl<I, C> !UnwindSafe for LruCacheAccess<I, C>
Blanket Implementations§
§impl<L> Access for Lwhere
L: LayeredAccess,
impl<L> Access for Lwhere
L: LayeredAccess,
§type Reader = <L as LayeredAccess>::Reader
type Reader = <L as LayeredAccess>::Reader
Reader is the associated reader returned in
read
operation.§type Writer = <L as LayeredAccess>::Writer
type Writer = <L as LayeredAccess>::Writer
Writer is the associated writer returned in
write
operation.§type Lister = <L as LayeredAccess>::Lister
type Lister = <L as LayeredAccess>::Lister
Lister is the associated lister returned in
list
operation.§type Deleter = <L as LayeredAccess>::Deleter
type Deleter = <L as LayeredAccess>::Deleter
Deleter is the associated deleter returned in
delete
operation.§type BlockingReader = <L as LayeredAccess>::BlockingReader
type BlockingReader = <L as LayeredAccess>::BlockingReader
BlockingReader is the associated reader returned
blocking_read
operation.§type BlockingWriter = <L as LayeredAccess>::BlockingWriter
type BlockingWriter = <L as LayeredAccess>::BlockingWriter
BlockingWriter is the associated writer returned
blocking_write
operation.§type BlockingLister = <L as LayeredAccess>::BlockingLister
type BlockingLister = <L as LayeredAccess>::BlockingLister
BlockingLister is the associated lister returned
blocking_list
operation.§type BlockingDeleter = <L as LayeredAccess>::BlockingDeleter
type BlockingDeleter = <L as LayeredAccess>::BlockingDeleter
BlockingDeleter is the associated deleter returned
blocking_delete
operation.§fn info(&self) -> Arc<AccessorInfo>
fn info(&self) -> Arc<AccessorInfo>
Invoke the
info
operation to get metadata of accessor. Read more§async fn create_dir(
&self,
path: &str,
args: OpCreateDir,
) -> Result<RpCreateDir, Error>
async fn create_dir( &self, path: &str, args: OpCreateDir, ) -> Result<RpCreateDir, Error>
Invoke the
create
operation on the specified path Read more§async fn read(
&self,
path: &str,
args: OpRead,
) -> Result<(RpRead, <L as Access>::Reader), Error>
async fn read( &self, path: &str, args: OpRead, ) -> Result<(RpRead, <L as Access>::Reader), Error>
§async fn write(
&self,
path: &str,
args: OpWrite,
) -> Result<(RpWrite, <L as Access>::Writer), Error>
async fn write( &self, path: &str, args: OpWrite, ) -> Result<(RpWrite, <L as Access>::Writer), Error>
Invoke the
write
operation on the specified path, returns a
written size if operate successful. Read more§async fn stat(&self, path: &str, args: OpStat) -> Result<RpStat, Error>
async fn stat(&self, path: &str, args: OpStat) -> Result<RpStat, Error>
Invoke the
stat
operation on the specified path. Read more§async fn delete(&self) -> Result<(RpDelete, <L as Access>::Deleter), Error>
async fn delete(&self) -> Result<(RpDelete, <L as Access>::Deleter), Error>
Invoke the
delete
operation on the specified path. Read more§async fn list(
&self,
path: &str,
args: OpList,
) -> Result<(RpList, <L as Access>::Lister), Error>
async fn list( &self, path: &str, args: OpList, ) -> Result<(RpList, <L as Access>::Lister), Error>
Invoke the
list
operation on the specified path. Read more§async fn presign(&self, path: &str, args: OpPresign) -> Result<RpPresign, Error>
async fn presign(&self, path: &str, args: OpPresign) -> Result<RpPresign, Error>
Invoke the
presign
operation on the specified path. Read more§fn blocking_create_dir(
&self,
path: &str,
args: OpCreateDir,
) -> Result<RpCreateDir, Error>
fn blocking_create_dir( &self, path: &str, args: OpCreateDir, ) -> Result<RpCreateDir, Error>
Invoke the
blocking_create
operation on the specified path. Read more§fn blocking_read(
&self,
path: &str,
args: OpRead,
) -> Result<(RpRead, <L as Access>::BlockingReader), Error>
fn blocking_read( &self, path: &str, args: OpRead, ) -> Result<(RpRead, <L as Access>::BlockingReader), Error>
Invoke the
blocking_read
operation on the specified path. Read more§fn blocking_write(
&self,
path: &str,
args: OpWrite,
) -> Result<(RpWrite, <L as Access>::BlockingWriter), Error>
fn blocking_write( &self, path: &str, args: OpWrite, ) -> Result<(RpWrite, <L as Access>::BlockingWriter), Error>
Invoke the
blocking_write
operation on the specified path. Read more§fn blocking_stat(&self, path: &str, args: OpStat) -> Result<RpStat, Error>
fn blocking_stat(&self, path: &str, args: OpStat) -> Result<RpStat, Error>
Invoke the
blocking_stat
operation on the specified path. Read more§fn blocking_delete(
&self,
) -> Result<(RpDelete, <L as Access>::BlockingDeleter), Error>
fn blocking_delete( &self, ) -> Result<(RpDelete, <L as Access>::BlockingDeleter), Error>
Invoke the
blocking_delete
operation on the specified path. Read more§fn blocking_list(
&self,
path: &str,
args: OpList,
) -> Result<(RpList, <L as Access>::BlockingLister), Error>
fn blocking_list( &self, path: &str, args: OpList, ) -> Result<(RpList, <L as Access>::BlockingLister), Error>
Invoke the
blocking_list
operation on the specified path. Read moreSource§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
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request