grafbase_sdk/
host_io.rs

1
2
3
4
5
6
7
8
9
//! # Host IO modules.
//!
//! This module contains IO modules, providing IO operations to the guest handled by the host runtime.
//! The interfaces are blocking from the guest's perspective, but the host runtime executes the IO asynchronously without
//! blocking the host thread when guest is waiting for IO.

pub mod access_log;
pub mod cache;
pub mod http;