pub struct EvictionReport {
pub marked_for_eviction: Vec<PathBuf>,
}Expand description
Files selected for eviction by policy evaluation.
Fields§
§marked_for_eviction: Vec<PathBuf>Absolute paths marked for eviction, in the order they would be applied.
Trait Implementations§
Source§impl Clone for EvictionReport
impl Clone for EvictionReport
Source§fn clone(&self) -> EvictionReport
fn clone(&self) -> EvictionReport
Returns a duplicate 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 moreSource§impl Debug for EvictionReport
impl Debug for EvictionReport
Source§impl Default for EvictionReport
impl Default for EvictionReport
Source§fn default() -> EvictionReport
fn default() -> EvictionReport
Returns the “default value” for a type. Read more
Source§impl PartialEq for EvictionReport
impl PartialEq for EvictionReport
impl Eq for EvictionReport
impl StructuralPartialEq for EvictionReport
Auto Trait Implementations§
impl Freeze for EvictionReport
impl RefUnwindSafe for EvictionReport
impl Send for EvictionReport
impl Sync for EvictionReport
impl Unpin for EvictionReport
impl UnsafeUnpin for EvictionReport
impl UnwindSafe for EvictionReport
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