| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
B9.Artifact.Content.Readable
Contents
Description
Content defined in text files (.b9 files), read with the Read instances.
Synopsis
- data Content
- type ErlangAst = AST Content ErlangPropList
Documentation
Constructors
| RenderErlang (AST Content ErlangPropList) | |
| RenderYamlObject (AST Content YamlObject) | |
| RenderCloudConfig (AST Content CloudConfigYaml) | |
| FromByteString ByteString | This data will be passed through unaltered.
This is used during the transition phase from having B9 stuff read from
files via Since: 0.5.62 |
| FromString String | Embed a literal string |
| FromTextFile SourceFile | Embed the contents of the |
| RenderBase64BinaryFile FilePath | The data in the given file will be base64 encoded. |
| RenderBase64Binary ByteString | This data will be base64 encoded. |
| FromURL String | Download the contents of the URL |
Instances
Convenient Aliases
type ErlangAst = AST Content ErlangPropList Source #
An ErlangPropList AST with Content
Since: 0.5.67