Struct ImmutableIndexLayer
pub struct ImmutableIndexLayer {
vec: Vec<String>,
}
Expand description
Add an immutable in-memory index for underlying storage services.
Especially useful for services without list capability like HTTP.
§Examples
let mut iil = ImmutableIndexLayer::default();
for i in ["file", "dir/", "dir/file", "dir_without_prefix/file"] {
iil.insert(i.to_string())
}
let op = Operator::from_iter::<services::Memory>(HashMap::<_, _>::default())?
.layer(iil)
.finish();
Ok(())
Fields§
§vec: Vec<String>
Implementations§
§impl ImmutableIndexLayer
impl ImmutableIndexLayer
pub fn extend_iter<I>(&mut self, iter: I)where
I: IntoIterator<Item = String>,
pub fn extend_iter<I>(&mut self, iter: I)where
I: IntoIterator<Item = String>,
Insert keys from iter.
Trait Implementations§
§impl Clone for ImmutableIndexLayer
impl Clone for ImmutableIndexLayer
§fn clone(&self) -> ImmutableIndexLayer
fn clone(&self) -> ImmutableIndexLayer
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 Debug for ImmutableIndexLayer
impl Debug for ImmutableIndexLayer
§impl Default for ImmutableIndexLayer
impl Default for ImmutableIndexLayer
§fn default() -> ImmutableIndexLayer
fn default() -> ImmutableIndexLayer
Returns the “default value” for a type. Read more
§impl<A> Layer<A> for ImmutableIndexLayerwhere
A: Access,
impl<A> Layer<A> for ImmutableIndexLayerwhere
A: Access,
§type LayeredAccess = ImmutableIndexAccessor<A>
type LayeredAccess = ImmutableIndexAccessor<A>
The layered accessor that returned by this layer.
§fn layer(&self, inner: A) -> <ImmutableIndexLayer as Layer<A>>::LayeredAccess
fn layer(&self, inner: A) -> <ImmutableIndexLayer as Layer<A>>::LayeredAccess
Intercept the operations on the underlying storage.
Auto Trait Implementations§
impl Freeze for ImmutableIndexLayer
impl RefUnwindSafe for ImmutableIndexLayer
impl Send for ImmutableIndexLayer
impl Sync for ImmutableIndexLayer
impl Unpin for ImmutableIndexLayer
impl UnwindSafe for ImmutableIndexLayer
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
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