pub struct ExportSettings {
pub enable_export: bool,
pub export_formats: Vec<ExportFormat>,
pub export_destinations: Vec<ExportDestination>,
pub export_frequency: Duration,
pub compression_enabled: bool,
}Expand description
Export settings for monitoring data
Fields§
§enable_export: boolEnable data export
export_formats: Vec<ExportFormat>Export formats
export_destinations: Vec<ExportDestination>Export destinations
export_frequency: DurationExport frequency
compression_enabled: boolCompression settings
Trait Implementations§
Source§impl Clone for ExportSettings
impl Clone for ExportSettings
Source§fn clone(&self) -> ExportSettings
fn clone(&self) -> ExportSettings
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExportSettings
impl Debug for ExportSettings
Auto Trait Implementations§
impl Freeze for ExportSettings
impl RefUnwindSafe for ExportSettings
impl Send for ExportSettings
impl Sync for ExportSettings
impl Unpin for ExportSettings
impl UnwindSafe for ExportSettings
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more