pub struct Entry {
pub path: PathBuf,
pub modified: SystemTime,
pub bytes: u64,
pub is_dir: bool,
}Expand description
One top-level entry in a producer’s directory. A run’s output may be a file or a directory (a rendered bundle is a directory), so retention counts entries rather than files.
Fields§
§path: PathBuf§modified: SystemTime§bytes: u64§is_dir: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnsafeUnpin 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