|
|
|
|
|
by yencabulator
522 days ago
|
|
Think of it as an enum, Type branches the logic. enum Service {
Exec { ExecStart: String, ... }
Forking { ExecStart: String, ... }
OneShot { ExecStart: String, ... }
}
You can argue that sometimes that ExecStart could be a different term, but it'd still end up being the same across multiple enum variants. |
|