wb_cache/test/simulation/scriptwriter/entity/
shipment.rs

1use fieldx::fxstruct;
2
3#[derive(Clone, Debug)]
4#[fxstruct(no_new, builder, get(copy))]
5pub struct Shipment {
6    product_id: i32,
7    batch_size: i32,
8    arrives_on: i32,
9}