Enum build_fs_tree::NodeContent
source · pub enum NodeContent<FileContent, DirectoryContent> {
File(FileContent),
Directory(DirectoryContent),
}
Expand description
Content of a node in the filesystem tree
Generic parameters:
FileContent
: Content of the node if it is a file.DirectoryContent
: Content of the node if it is a directory.
Variants§
Trait Implementations§
source§impl<FileContent: Clone, DirectoryContent: Clone> Clone for NodeContent<FileContent, DirectoryContent>
impl<FileContent: Clone, DirectoryContent: Clone> Clone for NodeContent<FileContent, DirectoryContent>
source§fn clone(&self) -> NodeContent<FileContent, DirectoryContent>
fn clone(&self) -> NodeContent<FileContent, DirectoryContent>
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<FileContent: Debug, DirectoryContent: Debug> Debug for NodeContent<FileContent, DirectoryContent>
impl<FileContent: Debug, DirectoryContent: Debug> Debug for NodeContent<FileContent, DirectoryContent>
source§impl<FileContent: PartialEq, DirectoryContent: PartialEq> PartialEq for NodeContent<FileContent, DirectoryContent>
impl<FileContent: PartialEq, DirectoryContent: PartialEq> PartialEq for NodeContent<FileContent, DirectoryContent>
source§fn eq(&self, other: &NodeContent<FileContent, DirectoryContent>) -> bool
fn eq(&self, other: &NodeContent<FileContent, DirectoryContent>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl<FileContent: Copy, DirectoryContent: Copy> Copy for NodeContent<FileContent, DirectoryContent>
impl<FileContent: Eq, DirectoryContent: Eq> Eq for NodeContent<FileContent, DirectoryContent>
impl<FileContent, DirectoryContent> StructuralPartialEq for NodeContent<FileContent, DirectoryContent>
Auto Trait Implementations§
impl<FileContent, DirectoryContent> Freeze for NodeContent<FileContent, DirectoryContent>
impl<FileContent, DirectoryContent> RefUnwindSafe for NodeContent<FileContent, DirectoryContent>where
FileContent: RefUnwindSafe,
DirectoryContent: RefUnwindSafe,
impl<FileContent, DirectoryContent> Send for NodeContent<FileContent, DirectoryContent>
impl<FileContent, DirectoryContent> Sync for NodeContent<FileContent, DirectoryContent>
impl<FileContent, DirectoryContent> Unpin for NodeContent<FileContent, DirectoryContent>
impl<FileContent, DirectoryContent> UnwindSafe for NodeContent<FileContent, DirectoryContent>where
FileContent: UnwindSafe,
DirectoryContent: UnwindSafe,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<X> Pipe for X
impl<X> Pipe for X
source§fn pipe_ref<'a, Return, Function>(&'a self, f: Function) -> Returnwhere
Function: FnOnce(&'a Self) -> Return,
fn pipe_ref<'a, Return, Function>(&'a self, f: Function) -> Returnwhere
Function: FnOnce(&'a Self) -> Return,
source§fn pipe_mut<'a, Return, Function>(&'a mut self, f: Function) -> Returnwhere
Function: FnOnce(&'a mut Self) -> Return,
fn pipe_mut<'a, Return, Function>(&'a mut self, f: Function) -> Returnwhere
Function: FnOnce(&'a mut Self) -> Return,
source§fn pipe_as_ref<'a, Param, Return, Function>(&'a self, f: Function) -> Return
fn pipe_as_ref<'a, Param, Return, Function>(&'a self, f: Function) -> Return
Apply
f
to &self
where f
takes a single parameter of type Param
and Self
implements trait AsRef<Param>
. Read moresource§fn pipe_as_mut<'a, Param, Return, Function>(&'a mut self, f: Function) -> Return
fn pipe_as_mut<'a, Param, Return, Function>(&'a mut self, f: Function) -> Return
Apply
f
to &mut self
where f
takes a single parameter of type Param
and Self
implements trait AsMut<Param>
. Read moresource§fn pipe_deref<'a, Param, Return, Function>(&'a self, f: Function) -> Return
fn pipe_deref<'a, Param, Return, Function>(&'a self, f: Function) -> Return
Apply
f
to &self
where f
takes a single parameter of type Param
and Self
implements trait Deref<Target = Param>
. Read moresource§fn pipe_deref_mut<'a, Param, Return, Function>(
&'a mut self,
f: Function,
) -> Returnwhere
Self: DerefMut<Target = Param>,
Param: 'a + ?Sized,
Function: FnOnce(&'a mut Param) -> Return,
fn pipe_deref_mut<'a, Param, Return, Function>(
&'a mut self,
f: Function,
) -> Returnwhere
Self: DerefMut<Target = Param>,
Param: 'a + ?Sized,
Function: FnOnce(&'a mut Param) -> Return,
Apply
f
to &mut self
where f
takes a single parameter of type Param
and Self
implements trait [DerefMut<Target = Param>
]. Read moresource§fn pipe_borrow<'a, Param, Return, Function>(&'a self, f: Function) -> Return
fn pipe_borrow<'a, Param, Return, Function>(&'a self, f: Function) -> Return
Apply
f
to &self
where f
takes a single parameter of type Param
and Self
implements trait Borrow<Param>
. Read moresource§fn pipe_borrow_mut<'a, Param, Return, Function>(
&'a mut self,
f: Function,
) -> Return
fn pipe_borrow_mut<'a, Param, Return, Function>( &'a mut self, f: Function, ) -> Return
Apply
f
to &mut self
where f
takes a single parameter of type Param
and Self
implements trait BorrowMut<Param>
. Read more