pub enum AuditExportFormat {
Json,
Splunk,
CloudEvents,
}Variants§
Json
JSONL (one JSON object per line, same as stored on disk)
Splunk
Splunk HEC-compatible JSON events
CloudEvents
CloudEvents 1.0 JSONL (application/cloudevents+json per line)
Trait Implementations§
Source§impl Clone for AuditExportFormat
impl Clone for AuditExportFormat
Source§fn clone(&self) -> AuditExportFormat
fn clone(&self) -> AuditExportFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ValueEnum for AuditExportFormat
impl ValueEnum for AuditExportFormat
Auto Trait Implementations§
impl Freeze for AuditExportFormat
impl RefUnwindSafe for AuditExportFormat
impl Send for AuditExportFormat
impl Sync for AuditExportFormat
impl Unpin for AuditExportFormat
impl UnsafeUnpin for AuditExportFormat
impl UnwindSafe for AuditExportFormat
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more