elicitor-form-egui 0.6.1

egui form backend for elicitor (GUI fill-in form)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Nested struct example
//!
//! Demonstrates:
//! - Nested structs create "AllOf" question groups
//! - All nested fields are collected together
//!
//! Run with: cargo run --example nested_struct

use elicitor_form_egui::EguiBackend;
use example_surveys::UserRegistration;

fn main() -> anyhow::Result<()> {
    let backend = EguiBackend::new();
    let result = UserRegistration::builder().run(backend)?;
    println!("{result:#?}");
    Ok(())
}