wit-bindgen-cli 0.57.0

CLI tool to generate bindings for WIT documents and the component model.
include!(env!("BINDINGS"));

use crate::test::common::to_test::{F1, R1, V1};

use exports::test::common::to_test;

pub struct Test {}

export!(Test);

impl to_test::Guest for Test {
    fn wrap(flag: F1) -> R1 {
        crate::test::common::to_test::wrap(flag)
    }

    fn var_f() -> V1 {
        crate::test::common::to_test::var_f()
    }
}