pub struct FileTreeData {
pub root_path: String,
pub root: FileNodeData,
}
Expand description
A type for representing data about a file tree.
Fields§
§root_path: String
The path to the root of this file tree.
root: FileNodeData
Data about the root of this file tree.
Trait Implementations§
Source§impl Clone for FileTreeData
impl Clone for FileTreeData
Source§fn clone(&self) -> FileTreeData
fn clone(&self) -> FileTreeData
Returns a copy 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 DeBin for FileTreeData
impl DeBin for FileTreeData
Source§impl Debug for FileTreeData
impl Debug for FileTreeData
Auto Trait Implementations§
impl Freeze for FileTreeData
impl RefUnwindSafe for FileTreeData
impl Send for FileTreeData
impl Sync for FileTreeData
impl Unpin for FileTreeData
impl UnwindSafe for FileTreeData
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