@@ -2953,6 +2953,50 @@ public func FfiConverterTypeOrganizationId_lower(_ value: OrganizationId) -> Rus
29532953
29542954
29552955
2956+ /**
2957+ * Typealias from the type name used in the UDL file to the builtin type. This
2958+ * is needed because the UDL type name is used in function/method signatures.
2959+ */
2960+ public typealias PasswordProtectedKeyEnvelope = String
2961+
2962+ #if swift(>=5.8)
2963+ @_documentation ( visibility: private)
2964+ #endif
2965+ public struct FfiConverterTypePasswordProtectedKeyEnvelope : FfiConverter {
2966+ public static func read( from buf: inout ( data: Data , offset: Data . Index ) ) throws -> PasswordProtectedKeyEnvelope {
2967+ return try FfiConverterString . read ( from: & buf)
2968+ }
2969+
2970+ public static func write( _ value: PasswordProtectedKeyEnvelope , into buf: inout [ UInt8 ] ) {
2971+ return FfiConverterString . write ( value, into: & buf)
2972+ }
2973+
2974+ public static func lift( _ value: RustBuffer ) throws -> PasswordProtectedKeyEnvelope {
2975+ return try FfiConverterString . lift ( value)
2976+ }
2977+
2978+ public static func lower( _ value: PasswordProtectedKeyEnvelope ) -> RustBuffer {
2979+ return FfiConverterString . lower ( value)
2980+ }
2981+ }
2982+
2983+
2984+ #if swift(>=5.8)
2985+ @_documentation ( visibility: private)
2986+ #endif
2987+ public func FfiConverterTypePasswordProtectedKeyEnvelope_lift( _ value: RustBuffer ) throws -> PasswordProtectedKeyEnvelope {
2988+ return try FfiConverterTypePasswordProtectedKeyEnvelope . lift ( value)
2989+ }
2990+
2991+ #if swift(>=5.8)
2992+ @_documentation ( visibility: private)
2993+ #endif
2994+ public func FfiConverterTypePasswordProtectedKeyEnvelope_lower( _ value: PasswordProtectedKeyEnvelope ) -> RustBuffer {
2995+ return FfiConverterTypePasswordProtectedKeyEnvelope . lower ( value)
2996+ }
2997+
2998+
2999+
29563000/**
29573001 * Typealias from the type name used in the UDL file to the builtin type. This
29583002 * is needed because the UDL type name is used in function/method signatures.
0 commit comments