happy-rusty • Docs
happy-rusty / AsyncIOResult
type AsyncIOResult<T>: AsyncResult<T, Error>;
Represents an asynchronous I/O operation that yields a Result<T, Error>
.
This is a promise that resolves to Ok(T)
if the I/O operation was successful, or Err(Error)
if there was an error.
Type Parameter | Description |
---|---|
T |
The type of the value that is produced by a successful I/O operation. |