| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Octane.Type.ReplayWithoutFrames
- data ReplayWithoutFrames = ReplayWithoutFrames {
- replayWithoutFramesVersion1 :: Word32
- replayWithoutFramesVersion2 :: Word32
- replayWithoutFramesLabel :: Text
- replayWithoutFramesProperties :: Dictionary Property
- replayWithoutFramesLevels :: List Text
- replayWithoutFramesKeyFrames :: List KeyFrame
- replayWithoutFramesStream :: Stream
- replayWithoutFramesMessages :: List Message
- replayWithoutFramesMarks :: List Mark
- replayWithoutFramesPackages :: List Text
- replayWithoutFramesObjects :: List Text
- replayWithoutFramesNames :: List Text
- replayWithoutFramesClasses :: List ClassItem
- replayWithoutFramesCache :: List CacheItem
- fromRawReplay :: Monad m => RawReplay -> m ReplayWithoutFrames
- toRawReplay :: Monad m => ReplayWithoutFrames -> m RawReplay
Documentation
data ReplayWithoutFrames Source #
A partially-processed replay. This has parsed all of the high-level metadata, but it has not parsed any of the network stream.
See ReplayWithFrames.
Constructors
Instances
fromRawReplay :: Monad m => RawReplay -> m ReplayWithoutFrames Source #
Converts a RawReplay into a ReplayWithoutFrames.
Operates in a Monad so that it can fail somewhat gracefully.
toRawReplay :: Monad m => ReplayWithoutFrames -> m RawReplay Source #
Converts a ReplayWithoutFrames into a RawReplay.
Operates in a Monad so that it can fail somewhat gracefully.