pub struct DashboardExportConfig {
pub enabled: bool,
pub formats: Vec<ExportFormat>,
pub storage_path: String,
}Expand description
Dashboard export configuration
Fields§
§enabled: boolEnable export functionality
formats: Vec<ExportFormat>Supported export formats
storage_path: StringExport storage location
Trait Implementations§
Source§impl Clone for DashboardExportConfig
impl Clone for DashboardExportConfig
Source§fn clone(&self) -> DashboardExportConfig
fn clone(&self) -> DashboardExportConfig
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 DashboardExportConfig
impl Debug for DashboardExportConfig
Source§impl Default for DashboardExportConfig
impl Default for DashboardExportConfig
Source§impl<'de> Deserialize<'de> for DashboardExportConfig
impl<'de> Deserialize<'de> for DashboardExportConfig
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 DashboardExportConfig
impl RefUnwindSafe for DashboardExportConfig
impl Send for DashboardExportConfig
impl Sync for DashboardExportConfig
impl Unpin for DashboardExportConfig
impl UnwindSafe for DashboardExportConfig
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