pub struct ExportConfig {
pub formats: Vec<String>,
pub auto_export: bool,
pub export_directory: String,
pub filename_template: String,
pub include_metadata: bool,
pub include_statistics: bool,
pub include_analytics: bool,
pub compression: bool,
pub encryption: bool,
}
Expand description
Export configuration
Fields§
§formats: Vec<String>
Supported export formats
auto_export: bool
Whether to auto-export
export_directory: String
Export directory
filename_template: String
Export filename template
include_metadata: bool
Whether to include metadata
include_statistics: bool
Whether to include statistics
include_analytics: bool
Whether to include analytics
compression: bool
Export compression
encryption: bool
Export encryption
Trait Implementations§
Source§impl Clone for ExportConfig
impl Clone for ExportConfig
Source§fn clone(&self) -> ExportConfig
fn clone(&self) -> ExportConfig
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 ExportConfig
impl Debug for ExportConfig
Source§impl Default for ExportConfig
impl Default for ExportConfig
Source§impl<'de> Deserialize<'de> for ExportConfig
impl<'de> Deserialize<'de> for ExportConfig
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 ExportConfig
impl RefUnwindSafe for ExportConfig
impl Send for ExportConfig
impl Sync for ExportConfig
impl Unpin for ExportConfig
impl UnwindSafe for ExportConfig
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