interface Deno.SystemMemoryInfo
Information returned from a call to Deno.systemMemoryInfo.
total: numberTotal installed memory in bytes.
free: numberUnused memory in bytes.
available: numberEstimation of how much memory, in bytes, is available for starting new applications, without swapping. Unlike the data provided by the cache or free fields, this field takes into account page cache and also that not all reclaimable memory will be reclaimed due to items being in use.
buffers: numberMemory used by kernel buffers.
cached: numberMemory used by the page cache and slabs.
swapTotal: numberTotal swap memory.
swapFree: numberUnused swap memory.