Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 678 Bytes

AsyncIOResult.md

File metadata and controls

24 lines (15 loc) · 678 Bytes

happy-rustyDocs


happy-rusty / AsyncIOResult

Type Alias: AsyncIOResult<T>

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 Parameters

Type Parameter Description
T The type of the value that is produced by a successful I/O operation.

Defined in

defines.ts:35