File tree 2 files changed +28
-7
lines changed
2 files changed +28
-7
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,17 @@ public enum Base32 {
30
30
public static let allowNullCharacters = DecodingOptions ( rawValue: UInt ( 1 << 0 ) )
31
31
}
32
32
33
- public enum DecodingError : Swift . Error , Equatable {
34
- case invalidCharacter
33
+ public struct DecodingError : Swift . Error , Equatable {
34
+ enum _Internal {
35
+ case invalidCharacter
36
+ }
37
+
38
+ fileprivate let value : _Internal
39
+ init ( _ value: _Internal ) {
40
+ self . value = value
41
+ }
42
+
43
+ public static var invalidCharacter : Self { . init( . invalidCharacter) }
35
44
}
36
45
37
46
/// Base32 Encode a buffer to an array of bytes
Original file line number Diff line number Diff line change @@ -334,11 +334,23 @@ extension Base64 {
334
334
public static let omitPaddingCharacter = DecodingOptions ( rawValue: UInt ( 1 << 1 ) )
335
335
}
336
336
337
- public enum DecodingError : Error , Equatable {
338
- case invalidLength
339
- case invalidCharacter( UInt8 )
340
- case unexpectedPaddingCharacter
341
- case unexpectedEnd
337
+ public struct DecodingError : Error , Equatable {
338
+ fileprivate enum _Internal : Error , Equatable {
339
+ case invalidLength
340
+ case invalidCharacter( UInt8 )
341
+ case unexpectedPaddingCharacter
342
+ case unexpectedEnd
343
+ }
344
+
345
+ fileprivate let value : _Internal
346
+ fileprivate init ( _ value: _Internal ) {
347
+ self . value = value
348
+ }
349
+
350
+ public static var invalidLength : Self { . init( . invalidLength) }
351
+ public static func invalidCharacter( _ character: UInt8 ) -> Self { . init( . invalidCharacter( character) ) }
352
+ public static var unexpectedPaddingCharacter : Self { . init( . unexpectedPaddingCharacter) }
353
+ public static var unexpectedEnd : Self { . init( . unexpectedEnd) }
342
354
}
343
355
344
356
@inlinable
You can’t perform that action at this time.
0 commit comments