```rust #[swift_bridge::bridge] mod ffi { extern "Swift" { type Foo; } #[swift_bridge(swift_repr = "struct")] struct Bar { foo: Foo } } ``` this does not currently work