I was searching and even looking at the core documentation and I didn't see something like the process module or similar, is there a way to achieve this? or it is impossible without the standard library?
Asked
Active
Viewed 45 times
1 Answers
3
Command
is for starting operating system processes, everything that requires OS support is in std
so no, Command
makes only sense in std
and thus is unavailable in core
.

cafce25
- 15,907
- 4
- 25
- 31
-
So it's impossible to create some sub process with no_std? – FRostri Mar 05 '23 at 07:07
-
2Typically in `no_std` there isn't even a concept of process let alone sub-process – cafce25 Mar 05 '23 at 07:07