Struct systemd_run::OutputSpec
source · pub struct OutputSpec(_);
Expand description
The description of a output.
Read StandardOutput
and StandardError
in
systemd.exec(5) for details.
Implementations§
source§impl OutputSpec
impl OutputSpec
sourcepub fn inherit() -> Self
pub fn inherit() -> Self
For stdout
, use the same file for stdin
.
For stderr
, use the same file for stdout
.
sourcepub fn file<T: AsRef<str>>(path: T) -> Self
pub fn file<T: AsRef<str>>(path: T) -> Self
Specify a path where the file will be overwritten from offset 0. If the file does not exist, it will be created.
This setting will be unavailable if the feature systemd_236
is
disabled.
sourcepub fn truncate<T: AsRef<str>>(path: T) -> Self
pub fn truncate<T: AsRef<str>>(path: T) -> Self
Like OutputSpec::file, but the file will be truncated before written.
This setting will be unavailable if the feature systemd_248
is
disabled.
sourcepub fn append<T: AsRef<str>>(path: T) -> Self
pub fn append<T: AsRef<str>>(path: T) -> Self
Like OutputSpec::file, but the file will be written from its end, instead of offset 0.
This setting will be unavailable if the feature systemd_240
is
disabled.