#![allow(dead_code)]// Tests that structs with nested structs work fine (in case our code generation gets confused
// somewhere between structs which are fields and the root struct)
usewsdf::*;#[derive(Protocol)]#[wsdf(decode_from ="moldudp.payload")]structProtoFoo{bar: Bar,
qux:u32,
}#[derive(ProtocolField)]structBar{baz:u64,
bat: [u8; 9],
}fnmain(){}