pub struct ExportOptions {
pub format: ExportFormat,
pub include_metadata: bool,
pub include_statistics: bool,
pub include_analytics: bool,
pub include_progress: bool,
pub include_branches: bool,
pub include_timestamps: bool,
pub pretty_print: bool,
pub custom_styling: Option<String>,
pub template: Option<String>,
}Expand description
Export options
Fields§
§format: ExportFormatExport format
include_metadata: boolWhether to include metadata
include_statistics: boolWhether to include statistics
include_analytics: boolWhether to include analytics
include_progress: boolWhether to include progress information
include_branches: boolWhether to include branches
include_timestamps: boolWhether to include timestamps
pretty_print: boolWhether to pretty print
custom_styling: Option<String>Custom styling for HTML/PDF
template: Option<String>Export template
Trait Implementations§
Source§impl Clone for ExportOptions
impl Clone for ExportOptions
Source§fn clone(&self) -> ExportOptions
fn clone(&self) -> ExportOptions
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 ExportOptions
impl Debug for ExportOptions
Source§impl Default for ExportOptions
impl Default for ExportOptions
Source§impl<'de> Deserialize<'de> for ExportOptions
impl<'de> Deserialize<'de> for ExportOptions
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 ExportOptions
impl RefUnwindSafe for ExportOptions
impl Send for ExportOptions
impl Sync for ExportOptions
impl Unpin for ExportOptions
impl UnwindSafe for ExportOptions
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