Struct CapabilityCheckLayer
pub struct CapabilityCheckLayer;
Expand description
Add an extra capability check layer for every operation
Similar to CorrectnessChecker
, Before performing any operations, this layer will first verify
its arguments against the capability of the underlying service. If the arguments is not supported,
an error will be returned directly.
Notes
There are two main differences between this checker with the CorrectnessChecker
:
-
This checker provides additional checks for capabilities like write_with_content_type and list_with_versions, among others. These capabilities do not affect data integrity, even if the underlying storage services do not support them.
-
OpenDAL doesn’t apply this checker by default. Users can enable this layer if they want to enforce stricter requirements.
§examples
use opendal::layers::CapabilityCheckLayer;
let _ = Operator::new(services::Memory::default())?
.layer(CapabilityCheckLayer)
.finish();
Ok(())
Trait Implementations§
§impl Default for CapabilityCheckLayer
impl Default for CapabilityCheckLayer
§fn default() -> CapabilityCheckLayer
fn default() -> CapabilityCheckLayer
Returns the “default value” for a type. Read more
§impl<A> Layer<A> for CapabilityCheckLayerwhere
A: Access,
impl<A> Layer<A> for CapabilityCheckLayerwhere
A: Access,
§type LayeredAccess = CapabilityAccessor<A>
type LayeredAccess = CapabilityAccessor<A>
The layered accessor that returned by this layer.
§fn layer(&self, inner: A) -> <CapabilityCheckLayer as Layer<A>>::LayeredAccess
fn layer(&self, inner: A) -> <CapabilityCheckLayer as Layer<A>>::LayeredAccess
Intercept the operations on the underlying storage.
Auto Trait Implementations§
impl Freeze for CapabilityCheckLayer
impl RefUnwindSafe for CapabilityCheckLayer
impl Send for CapabilityCheckLayer
impl Sync for CapabilityCheckLayer
impl Unpin for CapabilityCheckLayer
impl UnwindSafe for CapabilityCheckLayer
Blanket Implementations§
Source§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