| Safe Haskell | None |
|---|---|
| Language | Haskell98 |
Data.Conduit.Shell.Types
Description
All types.
- newtype ShellT m a = ShellT {}
- data ShellException
Documentation
Shell transformer.
Instances
| MonadTrans ShellT Source # | |
| Monad m => Monad (ShellT m) Source # | |
| Functor m => Functor (ShellT m) Source # | |
| Applicative m => Applicative (ShellT m) Source # | |
| MonadIO m => MonadIO (ShellT m) Source # | |
| MonadUnliftIO m => MonadResource (ShellT m) Source # | |
| MonadThrow m => MonadThrow (ShellT m) Source # | |
| (MonadUnliftIO (ShellT m), Applicative m, MonadThrow m) => Alternative (ConduitT i o (ShellT m)) Source # | Intentionally only handles |
data ShellException Source #
An exception resulting from a shell command.
Constructors
| ShellEmpty | For |
| ShellExitFailure !Int | Process exited with failure. |
Instances