pub struct ExportArgsMeta {
pub format: ExportFormat,
pub module_roots: Vec<String>,
pub module_depth: usize,
pub children: ChildIncludeMode,
pub min_code: usize,
pub max_rows: usize,
pub redact: RedactMode,
pub strip_prefix: Option<String>,
pub strip_prefix_redacted: bool,
}Fields§
§format: ExportFormat§module_roots: Vec<String>§module_depth: usize§children: ChildIncludeMode§min_code: usize§max_rows: usize§redact: RedactMode§strip_prefix: Option<String>§strip_prefix_redacted: boolTrue if strip_prefix was redacted (replaced with a hash).
Trait Implementations§
Source§impl Clone for ExportArgsMeta
impl Clone for ExportArgsMeta
Source§fn clone(&self) -> ExportArgsMeta
fn clone(&self) -> ExportArgsMeta
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 ExportArgsMeta
impl Debug for ExportArgsMeta
Source§impl<'de> Deserialize<'de> for ExportArgsMeta
impl<'de> Deserialize<'de> for ExportArgsMeta
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 ExportArgsMeta
impl RefUnwindSafe for ExportArgsMeta
impl Send for ExportArgsMeta
impl Sync for ExportArgsMeta
impl Unpin for ExportArgsMeta
impl UnsafeUnpin for ExportArgsMeta
impl UnwindSafe for ExportArgsMeta
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