/*
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT license.
*/usestd::fs::File;useio_uring::IoUring;// The IOContext struct for disk I/O. One for each thread.
pubstructIOContext{pubfile_handle: File,
pubring: IoUring,
}implIOContext{pubfnnew(file_handle: File, ring: IoUring)->Self{
IOContext { file_handle, ring }}}