specta-swift 0.0.3

Export your Rust types to Swift
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// This file has been generated by Specta. DO NOT EDIT.
import Foundation

public struct MyOtherType: Codable {
    public let otherField: String

    private enum CodingKeys: String, CodingKey {
        case otherField = "other_field"
    }
}

public struct MyType: Codable {
    public let field: MyOtherType
}