Trait shared_files::prelude::NewFile  
source · pub trait NewFile {
    type Target;
    type Error;
    // Required method
    fn new() -> Result<Self::Target, Self::Error>;
}Expand description
Trait for types that can be newly constructed asynchronously.