Created
September 27, 2017 18:14
-
-
Save piotrbernad/be1a25a8ae09495af87fa2e2dbdc32df to your computer and use it in GitHub Desktop.
LoadableState
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public enum LoadableState<ItemType> { | |
case idle | |
case loading | |
case loaded(items: [ItemType]) | |
case contentUnavailable | |
case refreshing | |
case error(error: Error) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment