(
mounts: Vec<(String, Arc<RwLock<Rendezvous>>)>
)
| 13 | |
| 14 | impl From<Vec<(String, Arc<RwLock<Rendezvous>>)>> for VFS { |
| 15 | fn from( |
| 16 | mounts: Vec<(String, Arc<RwLock<Rendezvous>>)> |
| 17 | ) -> Self { |
| 18 | VFS(Arc::new(RwLock::new(mounts))) |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | impl VFS { |