Struct Atof File Sink Section Config
Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-pii-redaction -p nemo-relay-ffi -p nemo-relay-types -p nemo-relay-plugin -p nemo-relay-worker-proto -p nemo-relay-worker.
pub struct AtofFileSinkSectionConfig {
pub output_directory: Option<PathBuf>,
pub filename: Option<String>,
pub mode: String,
}
File sink settings for the ATOF plugin section.
Fields
output_directory: Option<PathBuf>
Directory containing the JSONL output file.
filename: Option<String>
Output filename. Defaults to the native timestamped filename.
mode: String
File open mode: append or overwrite.
Trait Implementations
impl Clone for AtofFileSinkSectionConfig
impl Clone for AtofFileSinkSectionConfig
clone
fn clone(&self) -> AtofFileSinkSectionConfig
clone_from
fn clone_from(&mut self, source: &Self)
impl Debug for AtofFileSinkSectionConfig
impl Debug for AtofFileSinkSectionConfig
fmt
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<'de> Deserialize<'de> for AtofFileSinkSectionConfig
impl<'de> Deserialize<'de> for AtofFileSinkSectionConfig
deserialize
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl EditorConfig for AtofFileSinkSectionConfig
impl EditorConfig for AtofFileSinkSectionConfig
editor_schema
fn editor_schema() -> &'static EditorSchema
impl Serialize for AtofFileSinkSectionConfig
impl Serialize for AtofFileSinkSectionConfig
serialize
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
__S: Serializer,