Home
last modified time | relevance | path

Searched refs:BorrowReadPty (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/pty_process/
H A Dpty.rs98 pub fn split(&mut self) -> (BorrowReadPty, BorrowWritePty) { in split() argument
99 let read = BorrowReadPty(self); in split()
226 pub struct BorrowReadPty<'a>(&'a Pty); struct
228 impl AsyncRead for BorrowReadPty<'_> { implementation