1use std::io; 2 3/// The result of a virtual filesystem operation. 4pub type Result<T> = io::Result<T>;