AnySnapshot

public protocol AnySnapshot

A type-erased snapshot of data.

  • The point in time the data was captured.

    Declaration

    Swift

    var date: Date { get }
  • The data that was captured, erased as Any.

    Declaration

    Swift

    var typeErasedValue: Any? { get }