pub struct FileCandidate {
pub relative_path: String,
pub absolute_path: String,
pub size_bytes: u64,
}Fields§
§relative_path: String§absolute_path: String§size_bytes: u64Trait Implementations§
Source§impl Clone for FileCandidate
impl Clone for FileCandidate
Source§fn clone(&self) -> FileCandidate
fn clone(&self) -> FileCandidate
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 FileCandidate
impl Debug for FileCandidate
Auto Trait Implementations§
impl Freeze for FileCandidate
impl RefUnwindSafe for FileCandidate
impl Send for FileCandidate
impl Sync for FileCandidate
impl Unpin for FileCandidate
impl UnsafeUnpin for FileCandidate
impl UnwindSafe for FileCandidate
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