Struct Entry
pub struct Entry {
path: String,
metadata: Metadata,
}
Expand description
Entry returned by Lister
or [BlockingLister
] to represent a path and it’s relative metadata.
Fields§
§path: String
§metadata: Metadata
Implementations§
§impl Entry
impl Entry
pub fn path(&self) -> &str
pub fn path(&self) -> &str
Path of entry. Path is relative to operator’s root.
Only valid in current operator.
If this entry is a dir, path
MUST end with /
Otherwise, path
MUST NOT end with /
.
pub fn name(&self) -> &str
pub fn name(&self) -> &str
Name of entry. Name is the last segment of path.
If this entry is a dir, name
MUST end with /
Otherwise, name
MUST NOT end with /
.
pub fn metadata(&self) -> &Metadata
pub fn metadata(&self) -> &Metadata
Fetch metadata of this entry.
pub fn into_parts(self) -> (String, Metadata)
pub fn into_parts(self) -> (String, Metadata)
Consume this entry to get its path and metadata.
Trait Implementations§
§impl IntoDeleteInput for Entry
Implement IntoDeleteInput
for Entry
so we can use Lister
as a DeleteInput stream.
impl IntoDeleteInput for Entry
Implement IntoDeleteInput
for Entry
so we can use Lister
as a DeleteInput stream.
§fn into_delete_input(self) -> DeleteInput
fn into_delete_input(self) -> DeleteInput
Convert
self
into a DeleteInput
.Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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