object_store::layers::lru_cache

Struct LruCacheAccess

Source
pub struct LruCacheAccess<I, C> {
    inner: I,
    read_cache: ReadCache<C>,
}

Fields§

§inner: I§read_cache: ReadCache<C>

Trait Implementations§

Source§

impl<I: Debug, C: Debug> Debug for LruCacheAccess<I, C>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<I: Access, C: Access> LayeredAccess for LruCacheAccess<I, C>

Source§

type Inner = I

Source§

type Reader = Box<dyn ReadDyn>

Source§

type BlockingReader = <I as Access>::BlockingReader

Source§

type Writer = <I as Access>::Writer

Source§

type BlockingWriter = <I as Access>::BlockingWriter

Source§

type Lister = <I as Access>::Lister

Source§

type BlockingLister = <I as Access>::BlockingLister

Source§

type Deleter = CacheAwareDeleter<C, <I as Access>::Deleter>

Source§

type BlockingDeleter = <I as Access>::BlockingDeleter

Source§

fn inner(&self) -> &Self::Inner

Source§

async fn read(&self, path: &str, args: OpRead) -> Result<(RpRead, Self::Reader)>

Source§

async fn write( &self, path: &str, args: OpWrite, ) -> Result<(RpWrite, Self::Writer)>

Source§

async fn delete(&self) -> Result<(RpDelete, Self::Deleter)>

Source§

async fn list(&self, path: &str, args: OpList) -> Result<(RpList, Self::Lister)>

Source§

fn blocking_read( &self, path: &str, args: OpRead, ) -> Result<(RpRead, Self::BlockingReader)>

Source§

fn blocking_write( &self, path: &str, args: OpWrite, ) -> Result<(RpWrite, Self::BlockingWriter)>

Source§

fn blocking_list( &self, path: &str, args: OpList, ) -> Result<(RpList, Self::BlockingLister)>

Source§

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>
where I: Send, C: Sync + Send,

§

impl<I, C> Sync for LruCacheAccess<I, C>
where I: Sync, C: Sync + Send,

§

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 L
where L: LayeredAccess,

§

type Reader = <L as LayeredAccess>::Reader

Reader is the associated reader returned in read operation.
§

type Writer = <L as LayeredAccess>::Writer

Writer is the associated writer returned in write operation.
§

type Lister = <L as LayeredAccess>::Lister

Lister is the associated lister returned in list operation.
§

type Deleter = <L as LayeredAccess>::Deleter

Deleter is the associated deleter returned in delete operation.
§

type BlockingReader = <L as LayeredAccess>::BlockingReader

BlockingReader is the associated reader returned blocking_read operation.
§

type BlockingWriter = <L as LayeredAccess>::BlockingWriter

BlockingWriter is the associated writer returned blocking_write operation.
§

type BlockingLister = <L as LayeredAccess>::BlockingLister

BlockingLister is the associated lister returned blocking_list operation.
§

type BlockingDeleter = <L as LayeredAccess>::BlockingDeleter

BlockingDeleter is the associated deleter returned blocking_delete operation.
§

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>

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>

Invoke the read operation on the specified path, returns a Reader if operate successful. Read more
§

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 copy( &self, from: &str, to: &str, args: OpCopy, ) -> Result<RpCopy, Error>

Invoke the copy operation on the specified from path and to path. Read more
§

async fn rename( &self, from: &str, to: &str, args: OpRename, ) -> Result<RpRename, Error>

Invoke the rename operation on the specified from path and to path. Read more
§

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>

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>

Invoke the list operation on the specified path. Read more
§

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>

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>

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>

Invoke the blocking_write operation on the specified path. Read more
§

fn blocking_copy( &self, from: &str, to: &str, args: OpCopy, ) -> Result<RpCopy, Error>

Invoke the blocking_copy operation on the specified from path and to path. Read more
§

fn blocking_rename( &self, from: &str, to: &str, args: OpRename, ) -> Result<RpRename, Error>

Invoke the blocking_rename operation on the specified from path and to path. Read more
§

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>

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>

Invoke the blocking_list operation on the specified path. Read more
Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
Source§

impl<T> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSend for T
where T: Send,

§

impl<T> MaybeSendSync for T