pub struct ScheduledExportConfig {
pub name: String,
pub schedule_cron: String,
pub export_type: ExportType,
pub format: ExportFormat,
pub destinations: Vec<String>,
pub filters: ExportFilters,
}Expand description
Scheduled export configuration
Fields§
§name: String§schedule_cron: String§export_type: ExportType§format: ExportFormat§destinations: Vec<String>§filters: ExportFiltersTrait Implementations§
Source§impl Clone for ScheduledExportConfig
impl Clone for ScheduledExportConfig
Source§fn clone(&self) -> ScheduledExportConfig
fn clone(&self) -> ScheduledExportConfig
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 ScheduledExportConfig
impl Debug for ScheduledExportConfig
Source§impl<'de> Deserialize<'de> for ScheduledExportConfig
impl<'de> Deserialize<'de> for ScheduledExportConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ScheduledExportConfig
impl RefUnwindSafe for ScheduledExportConfig
impl Send for ScheduledExportConfig
impl Sync for ScheduledExportConfig
impl Unpin for ScheduledExportConfig
impl UnwindSafe for ScheduledExportConfig
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