Home
last modified time | relevance | path

Searched defs:File (Results 1 – 4 of 4) sorted by relevance

/commonlibrary/rust/ylong_runtime/ylong_runtime/src/fs/
Dasync_file.rs34 pub struct File { struct
35 file: Arc<SyncFile>, argument
36 inner: Mutex<FileInner>, argument
42 struct FileInner { argument
101 impl Debug for File { implementation
107 impl File { implementation
109 pub fn new(file: SyncFile) -> File { in new()
139 pub async fn open<P: AsRef<Path>>(path: P) -> io::Result<File> { in open()
161 pub async fn create<P: AsRef<Path>>(path: P) -> io::Result<File> { in create()
342 pub async fn try_clone(&self) -> io::Result<File> { in try_clone()
[all …]
Dopen_options.rs295 pub async fn open<P: AsRef<Path>>(&self, path: P) -> io::Result<File> { in open()
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/sys/unix/
Dchild.rs99 fn to_blocking_file(io: ChildStdio) -> io::Result<File> { in to_blocking_file()
/commonlibrary/rust/ylong_http/ylong_http/src/body/
Dmod.rs414 impl ReusableReader for crate::File { implementation