If we try to use the Sendable attribute on transparent structs, we get an error Did not recognize struct attribute "Sendable".
Example
#[swift_bridge(swift_repr = "struct", Sendable)]
struct TextAttrs {
traits: u8,
}
It would be nice to have Rust Send + Sync structs be Sendable in swift.
If we try to use the
Sendableattribute on transparent structs, we get an errorDid not recognize struct attribute "Sendable".Example
It would be nice to have Rust Send + Sync structs be Sendable in swift.