pub struct StfsTreeNode {
pub entry: StfsFileEntry,
pub children: Vec<StfsTreeNode>,
}Fields§
§entry: StfsFileEntry§children: Vec<StfsTreeNode>Trait Implementations§
Source§impl Clone for StfsTreeNode
impl Clone for StfsTreeNode
Source§fn clone(&self) -> StfsTreeNode
fn clone(&self) -> StfsTreeNode
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 moreAuto Trait Implementations§
impl Freeze for StfsTreeNode
impl RefUnwindSafe for StfsTreeNode
impl Send for StfsTreeNode
impl Sync for StfsTreeNode
impl Unpin for StfsTreeNode
impl UnsafeUnpin for StfsTreeNode
impl UnwindSafe for StfsTreeNode
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