iced_focus 0.1.1

A proc-macro to derive a focus chain for Iced applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[test]
fn tests() {
    let t = trybuild::TestCases::new();
    t.pass("tests/01-struct.rs");
    t.pass("tests/02-enum-unit.rs");
    t.pass("tests/03-enum-struct.rs");
    t.pass("tests/04-tuple-struct.rs");
    t.pass("tests/05-tuple-enum.rs");
    t.pass("tests/06-enable-with.rs");
    t.pass("tests/07-vector.rs");
    t.pass("tests/08-array.rs");
    t.pass("tests/09-option.rs");
    t.pass("tests/10-complex.rs");
    t.pass("tests/11-generics.rs");
}