Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.
pub struct AtofSectionConfig {
pub enabled: bool,
pub output_directory: Option<PathBuf>,
pub filename: Option<String>,
pub mode: String,
}
Filesystem-backed ATOF JSONL exporter config.
When enabled, this section wraps crate::observability::atof::AtofExporter and writes the raw ATOF event stream as JSONL. The exporter uses the current working directory and a timestamped filename when no explicit path settings are supplied.
enabled: boolWhether ATOF JSONL export is active.
output_directory: Option<PathBuf>Directory containing the JSONL output file.
filename: Option<String>Output filename. Defaults to the underlying ATOF exporter timestamped filename.
mode: StringFile open mode: append or overwrite.
impl Clone for AtofSectionConfigimpl Clone for AtofSectionConfig
clonefn clone(&self) -> AtofSectionConfig
clone_fromfn clone_from(&mut self, source: &Self)
impl Debug for AtofSectionConfigimpl Debug for AtofSectionConfig
fmtfn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Default for AtofSectionConfigimpl Default for AtofSectionConfig
defaultfn default() -> Self
impl<'de> Deserialize<'de> for AtofSectionConfigimpl<'de> Deserialize<'de> for AtofSectionConfig
deserializefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl EditorConfig for AtofSectionConfigimpl EditorConfig for AtofSectionConfig
editor_schemafn editor_schema() -> &'static EditorSchema
impl Serialize for AtofSectionConfigimpl Serialize for AtofSectionConfig
serializefn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
__S: Serializer,