blob: dcae19f4ef1a0855166f632d574bba82fff603e8 [file] [log] [blame]
public struct ResilientGenericStruct<T> {
public init(value: T) {
size = MemoryLayout<T>.size
storage = value
}
public var size: Int
private var storage: T
}