object_store::layers::observe

Struct MetricsAccessor

pub struct MetricsAccessor<A, I>
where A: Access, I: MetricsIntercept,
{ inner: Arc<A>, interceptor: I, scheme: Scheme, namespace: Arc<String>, root: Arc<String>, }
Expand description

The metrics accessor for opendal.

Fields§

§inner: Arc<A>§interceptor: I§scheme: Scheme§namespace: Arc<String>§root: Arc<String>

Trait Implementations§

§

impl<A, I> Clone for MetricsAccessor<A, I>

§

fn clone(&self) -> MetricsAccessor<A, I>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<A, I> Debug for MetricsAccessor<A, I>
where A: Access, I: MetricsIntercept,

§

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

Formats the value using the given formatter. Read more
§

impl<A, I> LayeredAccess for MetricsAccessor<A, I>
where A: Access, I: MetricsIntercept,

§

type Inner = A

§

type Reader = MetricsWrapper<<A as Access>::Reader, I>

§

type BlockingReader = MetricsWrapper<<A as Access>::BlockingReader, I>

§

type Writer = MetricsWrapper<<A as Access>::Writer, I>

§

type BlockingWriter = MetricsWrapper<<A as Access>::BlockingWriter, I>

§

type Lister = MetricsWrapper<<A as Access>::Lister, I>

§

type BlockingLister = MetricsWrapper<<A as Access>::BlockingLister, I>

§

type Deleter = MetricsWrapper<<A as Access>::Deleter, I>

§

type BlockingDeleter = MetricsWrapper<<A as Access>::BlockingDeleter, I>

§

fn inner(&self) -> &<MetricsAccessor<A, I> as LayeredAccess>::Inner

§

async fn create_dir( &self, path: &str, args: OpCreateDir, ) -> Result<RpCreateDir, Error>

§

async fn read( &self, path: &str, args: OpRead, ) -> Result<(RpRead, <MetricsAccessor<A, I> as LayeredAccess>::Reader), Error>

§

async fn write( &self, path: &str, args: OpWrite, ) -> Result<(RpWrite, <MetricsAccessor<A, I> as LayeredAccess>::Writer), Error>

§

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

§

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

§

async fn stat(&self, path: &str, args: OpStat) -> Result<RpStat, Error>

§

async fn delete( &self, ) -> Result<(RpDelete, <MetricsAccessor<A, I> as LayeredAccess>::Deleter), Error>

§

async fn list( &self, path: &str, args: OpList, ) -> Result<(RpList, <MetricsAccessor<A, I> as LayeredAccess>::Lister), Error>

§

async fn presign(&self, path: &str, args: OpPresign) -> Result<RpPresign, Error>

§

fn blocking_create_dir( &self, path: &str, args: OpCreateDir, ) -> Result<RpCreateDir, Error>

§

fn blocking_read( &self, path: &str, args: OpRead, ) -> Result<(RpRead, <MetricsAccessor<A, I> as LayeredAccess>::BlockingReader), Error>

§

fn blocking_write( &self, path: &str, args: OpWrite, ) -> Result<(RpWrite, <MetricsAccessor<A, I> as LayeredAccess>::BlockingWriter), 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>

§

fn blocking_delete( &self, ) -> Result<(RpDelete, <MetricsAccessor<A, I> as LayeredAccess>::BlockingDeleter), Error>

§

fn blocking_list( &self, path: &str, args: OpList, ) -> Result<(RpList, <MetricsAccessor<A, I> as LayeredAccess>::BlockingLister), Error>

§

fn info(&self) -> Arc<AccessorInfo>

Auto Trait Implementations§

§

impl<A, I> Freeze for MetricsAccessor<A, I>
where I: Freeze,

§

impl<A, I> RefUnwindSafe for MetricsAccessor<A, I>

§

impl<A, I> Send for MetricsAccessor<A, I>

§

impl<A, I> Sync for MetricsAccessor<A, I>

§

impl<A, I> Unpin for MetricsAccessor<A, I>

§

impl<A, I> UnwindSafe for MetricsAccessor<A, I>

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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