EnumerationFoundation5.9.0
DataDecodingStrategy
The strategy to use for decoding Data
values.
enum DataDecodingStrategy
Citizens in Foundation
Members
case base64
Decode the
Data
from a Base64-encoded string. This is the default strategy.case custom((Decoder) throws -> Data)
Decode the
Data
as a custom value decoded by the given closure.case deferredToData
Defer to
Data
for decoding.