Is there a way to get something like the Command type in no_std?

64 Views Asked by At

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?

1

There are 1 best solutions below

2
cafce25 On BEST ANSWER

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.