pub struct FileTreeEntry {
pub name: String,
pub path: String,
pub kind: String,
pub language: Option<Language>,
pub node_count: Option<i64>,
pub size: Option<u64>,
pub children: Vec<FileTreeEntry>,
}Fields§
§name: String§path: String§kind: String§language: Option<Language>§node_count: Option<i64>§size: Option<u64>§children: Vec<FileTreeEntry>Trait Implementations§
Source§impl Clone for FileTreeEntry
impl Clone for FileTreeEntry
Source§fn clone(&self) -> FileTreeEntry
fn clone(&self) -> FileTreeEntry
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 Debug for FileTreeEntry
impl Debug for FileTreeEntry
Auto Trait Implementations§
impl Freeze for FileTreeEntry
impl RefUnwindSafe for FileTreeEntry
impl Send for FileTreeEntry
impl Sync for FileTreeEntry
impl Unpin for FileTreeEntry
impl UnsafeUnpin for FileTreeEntry
impl UnwindSafe for FileTreeEntry
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