Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
- 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
CreateProcess CmdSpec (Maybe FilePath) (Maybe [(String, String)]) StdStream StdStream StdStream Bool Bool Bool |
Eq CreateProcess | |
Show CreateProcess | |
Applicative f => AsRawCommand (->) f CreateProcess | |
Applicative f => AsShellCommand (->) f CreateProcess | |
Applicative f => AsExecutableArguments (->) f CreateProcess | |
Applicative f => AsExecutableName (->) f CreateProcess | |
Functor f => AsCmdSpec (->) f CreateProcess | |
Functor f => AsDelegateCtrlC (->) f CreateProcess | |
Functor f => AsCreateGroup (->) f CreateProcess | |
Functor f => AsCloseDescriptors (->) f CreateProcess | |
Functor f => AsStderr (->) f CreateProcess | |
Functor f => AsStdout (->) f CreateProcess | |
Functor f => AsStdin (->) f CreateProcess | |
Functor f => AsEnvironment (->) f CreateProcess | |
Functor f => AsWorkingDirectory (->) f CreateProcess | |
AsCreateProcess p f CreateProcess |
class AsCreateProcess p f s where Source
Types that related to CreateProcess
.
Nothing
_CreateProcess :: Optic' p f s CreateProcess Source
(Profunctor p, Functor f) => AsCreateProcess p f CreateProcess | |
AsCreateProcess p f CreateProcess |
class AsWorkingDirectory p f s where Source
Types that relate to a (maybe) working directory.
Nothing
_WorkingDirectory :: Optic' p f s (Maybe FilePath) Source
Functor f => AsWorkingDirectory (->) f CreateProcess | |
AsWorkingDirectory p f (Maybe FilePath) |
class AsEnvironment p f s where Source
Types that relate to an environment.
Nothing
Functor f => AsEnvironment (->) f CreateProcess | |
AsEnvironment p f (Maybe [(String, String)]) |
class AsStdin p f s where Source
Types that relate to a standard input stream.
Nothing
Functor f => AsStdin (->) f CreateProcess | |
AsStdin p f StdStream |
class AsStdout p f s where Source
Types that relate to a standard output stream.
Nothing
Functor f => AsStdout (->) f CreateProcess | |
AsStdout p f StdStream |
class AsStderr p f s where Source
Types that relate to a standard error stream.
Nothing
Functor f => AsStderr (->) f CreateProcess | |
AsStderr p f StdStream |
class AsCloseDescriptors p f s where Source
Types that relate to closing descriptors.
Nothing
_CloseDescriptors :: Optic' p f s Bool Source
Functor f => AsCloseDescriptors (->) f CreateProcess | |
AsCloseDescriptors p f Bool |
class AsCreateGroup p f s where Source
Types that relate to creating groups.
Nothing
_CreateGroup :: Optic' p f s Bool Source
Functor f => AsCreateGroup (->) f CreateProcess | |
AsCreateGroup p f Bool |
class AsDelegateCtrlC p f s where Source
Types that relate to delegating CTRL-C.
Nothing
_DelegateCtrlC :: Optic' p f s Bool Source
Functor f => AsDelegateCtrlC (->) f CreateProcess | |
AsDelegateCtrlC p f Bool |