vfs/directory/immutable.rs
1// Copyright 2019 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5//! Directories that live in this module are "immutable" from the client standpoint. Even over a
6//! connection with the write access, clients may not rename, delete or link entries in these
7//! directories.
8
9pub mod simple;
10pub use simple::{simple, Simple};
11
12pub mod connection;