Initializervapor 4.114.1Vapor
init(_:)
BasicCodingKey.swift:55init(_ codingKey: CodingKey)
init(_ codingKey: CodingKey)
import Vapor
Vapor is a framework for building server applications, APIs and websites in Swift. It provides a safe, performant and scalable foundation for building large complex backends.
enum BasicCodingKey
A basic CodingKey
implementation.
protocol CodingKey : CustomDebugStringConvertible, CustomStringConvertible, Sendable
A type that can be used as a key for encoding and decoding.
init(_ codingKeyRepresentable: Vapor.CodingKeyRepresentable)
init?(intValue: Int)
See CodingKey
.
init(integerLiteral: Int)
init(stringLiteral: String)
init?(stringValue: String)
See CodingKey
.
var debugDescription: String { get }
var description: String { get }
var intValue: Int? { get }
See CodingKey
.
var stringValue: String { get }
See CodingKey
.
static func integer(_ i: Int) -> BasicCodingKey
static func string(_ s: String) -> BasicCodingKey