pub struct ExportOptions {
pub format: String,
pub from: Option<String>,
pub depth: usize,
pub limit: usize,
pub group_by: ExportGroupBy,
pub collapse_tests: bool,
pub exported_only: bool,
pub html_out: Option<PathBuf>,
}Fields§
§format: String§from: Option<String>§depth: usize§limit: usize§group_by: ExportGroupBy§collapse_tests: bool§exported_only: bool§html_out: Option<PathBuf>Implementations§
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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ExportOptions
impl RefUnwindSafe for ExportOptions
impl Send for ExportOptions
impl Sync for ExportOptions
impl Unpin for ExportOptions
impl UnsafeUnpin 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