pub struct FileTreeData {
pub root_path: String,
pub root: FileNodeData,
}Expand description
A type for representing data about a file tree.
Fields§
§root_path: StringThe path to the root of this file tree.
root: FileNodeDataData 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 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 DeBin for FileTreeData
impl DeBin for FileTreeData
Source§impl Debug for FileTreeData
impl Debug for FileTreeData
Source§impl Default for FileTreeData
impl Default for FileTreeData
Source§fn default() -> FileTreeData
fn default() -> FileTreeData
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FileTreeData
impl RefUnwindSafe for FileTreeData
impl Send for FileTreeData
impl Sync for FileTreeData
impl Unpin for FileTreeData
impl UnsafeUnpin for FileTreeData
impl UnwindSafe for FileTreeData
Blanket Implementations§
Source§impl<T> ActionTrait for T
impl<T> ActionTrait for T
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