pub struct ObjectCollection {
pub objects: Vec<ObjectInfo>,
pub skipped: Vec<SkippedObject>,
}Expand description
A completed tolerant directory read: what was readable, and what wasn’t.
Fields§
§objects: Vec<ObjectInfo>Every object whose metadata was read successfully.
skipped: Vec<SkippedObject>Per-handle failures that met the library’s narrow safe-to-skip policy.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ObjectCollection
impl RefUnwindSafe for ObjectCollection
impl Send for ObjectCollection
impl Sync for ObjectCollection
impl Unpin for ObjectCollection
impl UnsafeUnpin for ObjectCollection
impl UnwindSafe for ObjectCollection
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