Skip to content

Instantly share code, notes, and snippets.

@varun04
Created August 4, 2021 10:26
Show Gist options
  • Select an option

  • Save varun04/4e456c060ae991e4b61a68470a1015c2 to your computer and use it in GitHub Desktop.

Select an option

Save varun04/4e456c060ae991e4b61a68470a1015c2 to your computer and use it in GitHub Desktop.
struct DecodingOptions {
enum Mode {
case synchronous
case asynchronous
}
static var `default`: DecodingOptions {
DecodingOptions(mode: .asynchronous, sizeForDrawing: nil)
}
var mode: Mode
var sizeForDrawing: CGSize?
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment