pub struct DirectoryRecord {
pub path: PathBuf,
pub score: Option<f64>,
pub exists: bool,
}Fields§
§path: PathBuf§score: Option<f64>§exists: boolTrait Implementations§
Source§impl Clone for DirectoryRecord
impl Clone for DirectoryRecord
Source§fn clone(&self) -> DirectoryRecord
fn clone(&self) -> DirectoryRecord
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 DirectoryRecord
impl Debug for DirectoryRecord
Source§impl PartialEq for DirectoryRecord
impl PartialEq for DirectoryRecord
impl StructuralPartialEq for DirectoryRecord
Auto Trait Implementations§
impl Freeze for DirectoryRecord
impl RefUnwindSafe for DirectoryRecord
impl Send for DirectoryRecord
impl Sync for DirectoryRecord
impl Unpin for DirectoryRecord
impl UnsafeUnpin for DirectoryRecord
impl UnwindSafe for DirectoryRecord
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