pub struct DebugOptions {
pub dump_apidoc_after_merge: Option<String>,
pub debug_type_inference: Vec<String>,
}Expand description
デバッグ出力オプション
パイプラインの特定の段階でデータ構造をダンプして早期終了するためのオプション。
Fields§
§dump_apidoc_after_merge: Option<String>apidoc マージ後にダンプして終了 Some(filter) でフィルタ指定(正規表現)、Some(“”) で全件出力
debug_type_inference: Vec<String>型推論デバッグ対象のマクロ名リスト
Implementations§
Source§impl DebugOptions
impl DebugOptions
Trait Implementations§
Source§impl Clone for DebugOptions
impl Clone for DebugOptions
Source§fn clone(&self) -> DebugOptions
fn clone(&self) -> DebugOptions
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 moreSource§impl Debug for DebugOptions
impl Debug for DebugOptions
Source§impl Default for DebugOptions
impl Default for DebugOptions
Source§fn default() -> DebugOptions
fn default() -> DebugOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DebugOptions
impl RefUnwindSafe for DebugOptions
impl Send for DebugOptions
impl Sync for DebugOptions
impl Unpin for DebugOptions
impl UnsafeUnpin for DebugOptions
impl UnwindSafe for DebugOptions
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