| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Sys.CreateProcess
- data CreateProcess = CreateProcess CmdSpec (Maybe FilePath) (Maybe [(String, String)]) StdStream StdStream StdStream Bool Bool Bool
- class AsCreateProcess p f s where
- _CreateProcess :: Optic' p f s CreateProcess
- class AsWorkingDirectory p f s where
- _WorkingDirectory :: Optic' p f s (Maybe FilePath)
- class AsEnvironment p f s where
- _Environment :: Optic' p f s (Maybe [(String, String)])
- class AsStdin p f s where
- class AsStdout p f s where
- class AsStderr p f s where
- class AsCloseDescriptors p f s where
- _CloseDescriptors :: Optic' p f s Bool
- class AsCreateGroup p f s where
- _CreateGroup :: Optic' p f s Bool
- class AsDelegateCtrlC p f s where
- _DelegateCtrlC :: Optic' p f s Bool
Documentation
data CreateProcess Source
Data type representing a process.
see CreateProcess.
Constructors
| CreateProcess CmdSpec (Maybe FilePath) (Maybe [(String, String)]) StdStream StdStream StdStream Bool Bool Bool |
Instances
| Eq CreateProcess Source | |
| Show CreateProcess Source | |
| Applicative f => AsRawCommand (->) f CreateProcess Source | |
| Applicative f => AsShellCommand (->) f CreateProcess Source | |
| Applicative f => AsExecutableArguments (->) f CreateProcess Source | |
| Applicative f => AsExecutableName (->) f CreateProcess Source | |
| Functor f => AsCmdSpec (->) f CreateProcess Source | |
| Functor f => AsDelegateCtrlC (->) f CreateProcess Source | |
| Functor f => AsCreateGroup (->) f CreateProcess Source | |
| Functor f => AsCloseDescriptors (->) f CreateProcess Source | |
| Functor f => AsStderr (->) f CreateProcess Source | |
| Functor f => AsStdout (->) f CreateProcess Source | |
| Functor f => AsStdin (->) f CreateProcess Source | |
| Functor f => AsEnvironment (->) f CreateProcess Source | |
| Functor f => AsWorkingDirectory (->) f CreateProcess Source | |
| AsCreateProcess p f CreateProcess Source |
class AsCreateProcess p f s where Source
Types that related to CreateProcess.
Minimal complete definition
Nothing
Methods
_CreateProcess :: Optic' p f s CreateProcess Source
Instances
| (Profunctor p, Functor f) => AsCreateProcess p f CreateProcess Source | |
| AsCreateProcess p f CreateProcess Source |
class AsWorkingDirectory p f s where Source
Types that relate to a (maybe) working directory.
Minimal complete definition
Nothing
Methods
_WorkingDirectory :: Optic' p f s (Maybe FilePath) Source
Instances
| Functor f => AsWorkingDirectory (->) f CreateProcess Source | |
| AsWorkingDirectory p f (Maybe FilePath) Source |
class AsEnvironment p f s where Source
Types that relate to an environment.
Minimal complete definition
Nothing
Instances
| Functor f => AsEnvironment (->) f CreateProcess Source | |
| AsEnvironment p f (Maybe [(String, String)]) Source |
class AsStdin p f s where Source
Types that relate to a standard input stream.
Minimal complete definition
Nothing
class AsStdout p f s where Source
Types that relate to a standard output stream.
Minimal complete definition
Nothing
class AsStderr p f s where Source
Types that relate to a standard error stream.
Minimal complete definition
Nothing
class AsCloseDescriptors p f s where Source
Types that relate to closing descriptors.
Minimal complete definition
Nothing
Methods
_CloseDescriptors :: Optic' p f s Bool Source
Instances
| Functor f => AsCloseDescriptors (->) f CreateProcess Source | |
| AsCloseDescriptors p f Bool Source |
class AsCreateGroup p f s where Source
Types that relate to creating groups.
Minimal complete definition
Nothing
Methods
_CreateGroup :: Optic' p f s Bool Source
Instances
| Functor f => AsCreateGroup (->) f CreateProcess Source | |
| AsCreateGroup p f Bool Source |
class AsDelegateCtrlC p f s where Source
Types that relate to delegating CTRL-C.
Minimal complete definition
Nothing
Methods
_DelegateCtrlC :: Optic' p f s Bool Source
Instances
| Functor f => AsDelegateCtrlC (->) f CreateProcess Source | |
| AsDelegateCtrlC p f Bool Source |