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>
impl<A, I> Clone for MetricsAccessor<A, I>
§fn clone(&self) -> 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)
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,
impl<A, I> Debug for MetricsAccessor<A, I>where
A: Access,
I: MetricsIntercept,
§impl<A, I> LayeredAccess for MetricsAccessor<A, I>where
A: Access,
I: MetricsIntercept,
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>where
I: RefUnwindSafe,
A: RefUnwindSafe,
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>where
I: UnwindSafe,
A: RefUnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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