pub struct RecycleBinPair {
pub index_path: PathBuf,
pub content_path: Option<PathBuf>,
}Expand description
A matched $I/$R pair (or a lone $I) discovered by a directory scan.
Fields§
§index_path: PathBufThe $I index file path.
content_path: Option<PathBuf>The paired $R content file path, if one exists in the directory.
Trait Implementations§
Source§impl Clone for RecycleBinPair
impl Clone for RecycleBinPair
Source§fn clone(&self) -> RecycleBinPair
fn clone(&self) -> RecycleBinPair
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RecycleBinPair
impl Debug for RecycleBinPair
impl Eq for RecycleBinPair
Source§impl PartialEq for RecycleBinPair
impl PartialEq for RecycleBinPair
Source§fn eq(&self, other: &RecycleBinPair) -> bool
fn eq(&self, other: &RecycleBinPair) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RecycleBinPair
Auto Trait Implementations§
impl Freeze for RecycleBinPair
impl RefUnwindSafe for RecycleBinPair
impl Send for RecycleBinPair
impl Sync for RecycleBinPair
impl Unpin for RecycleBinPair
impl UnsafeUnpin for RecycleBinPair
impl UnwindSafe for RecycleBinPair
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