Expand description
EntryContainer
is a trait implemented by directories that allow manipulation of their
content.
Structs§
- Directory
Watcher - A type-preserving wrapper around
fuchsia_async::Channel
.
Traits§
- Directory
- All directories implement this trait. If a directory can be modified it should
also implement the
MutableDirectory
trait. - Mutable
Directory - This trait indicates a directory that can be mutated by adding and removing entries.
This trait must be implemented to use a
MutableConnection
, however, a directory could also implement theDirectlyMutable
type, which provides a blanket implementation of this trait.