Static Method (Default implementation)soto-core 7.4.0SotoCore
decode(from:)
decode Date using DateFormatter
static func decode(from decoder: Decoder) throws -> CodableValue
decode Date using DateFormatter
static func decode(from decoder: Decoder) throws -> CodableValue
s8SotoCore15DateFormatCoderPAAE6decode4from20FoundationEssentials0C0Vs7Decoder_p_tKFZ
What are these?9696A
import SotoCore
protocol DateFormatCoder : CustomDecoder, CustomEncoder where Self.CodableValue == Date
Protocol for time stamp coders that use a DateFormatter. Use this to enforce the timestamp format we require, or to set the timestamp format output
protocol Decoder
A type that can decode values from a native format into in-memory representations.
associatedtype CodableValue : Sendable
static func decode(from decoder: Decoder) throws -> CodableValue
static func encode(value: CodableValue, to encoder: Encoder) throws
encode Date using DateFormatter
static func string(from value: Date) -> String?