pub struct ProjectedFile {
pub file_id: u128,
pub is_directory: bool,
pub path: PathBuf,
}
Fields§
§file_id: u128
§is_directory: bool
§path: PathBuf
Trait Implementations§
Source§impl Clone for ProjectedFile
impl Clone for ProjectedFile
Source§fn clone(&self) -> ProjectedFile
fn clone(&self) -> ProjectedFile
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 ProjectedFile
impl Debug for ProjectedFile
Source§impl Default for ProjectedFile
impl Default for ProjectedFile
Source§fn default() -> ProjectedFile
fn default() -> ProjectedFile
Returns the “default value” for a type. Read more
Source§impl Ord for ProjectedFile
impl Ord for ProjectedFile
Source§fn cmp(&self, other: &ProjectedFile) -> Ordering
fn cmp(&self, other: &ProjectedFile) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ProjectedFile
impl PartialEq for ProjectedFile
Source§impl PartialOrd for ProjectedFile
impl PartialOrd for ProjectedFile
impl Eq for ProjectedFile
impl StructuralPartialEq for ProjectedFile
Auto Trait Implementations§
impl Freeze for ProjectedFile
impl RefUnwindSafe for ProjectedFile
impl Send for ProjectedFile
impl Sync for ProjectedFile
impl Unpin for ProjectedFile
impl UnwindSafe for ProjectedFile
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