Instance Methodsoto-core 7.4.0SotoCore->Swift
decode(_:forKey:)
CodableProperties.swift:121func decode<T>(_ type: T.Type, forKey key: KeyedDecodingContainer<K>.Key) throws -> T where T : OptionalCustomCodingWrapper, T : Decodable
func decode<T>(_ type: T.Type, forKey key: KeyedDecodingContainer<K>.Key) throws -> T where T : OptionalCustomCodingWrapper, T : Decodable
ss22KeyedDecodingContainerV8SotoCoreE6decode_6forKeyqd__qd__m_xtKAC27OptionalCustomCodingWrapperRd__SeRd__lF
What are these?8G9JY
where K:CodingKey
import Swift
import SotoCore
struct KeyedDecodingContainer<K> where K : CodingKey
A concrete container that provides a view into a decoder’s storage, making the encoded properties of a decodable type accessible by keys.
typealias Key = K
protocol OptionalCustomCodingWrapper
Protocol for a PropertyWrapper to properly handle CustomCoding when the wrappedValue is Optional
protocol Decodable
A type that can decode itself from an external representation.
protocol CodingKey : CustomDebugStringConvertible, CustomStringConvertible, Sendable
A type that can be used as a key for encoding and decoding.