Reference
public enum Reference
A reference to some meta, eigther on the storage, or inside another container meta.
References are used to rewrite copy types directly to the place where they are stored.
-
A reference directly to the coding storage
Declaration
Swift
case direct(CodingStorage, [CodingKey]) -
A reference to an element inside another container.
Declaration
Swift
case containerElement(ContainerElementReference) -
The referenced meta.
Declaration
Swift
public var meta: Meta { get set }
View on GitHub
Reference Enumeration Reference