pub struct DebugConfig {
pub enabled: bool,
pub trace: Option<bool>,
pub visualize: Option<bool>,
pub visualize_path: Option<String>,
pub output_path: Option<String>,
pub text_filter: Option<Vec<String>>,
pub page_filter: Option<u32>,
pub region_filter: Option<RegionFilter>,
}Expand description
Grid projection debug knobs. Replaces the bespoke gridDebugLogger with a
tracing-friendly config surface.
Fields§
§enabled: bool§trace: Option<bool>§visualize: Option<bool>§visualize_path: Option<String>§output_path: Option<String>§text_filter: Option<Vec<String>>§page_filter: Option<u32>§region_filter: Option<RegionFilter>Trait Implementations§
Source§impl Clone for DebugConfig
impl Clone for DebugConfig
Source§fn clone(&self) -> DebugConfig
fn clone(&self) -> DebugConfig
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 DebugConfig
impl Debug for DebugConfig
Source§impl Default for DebugConfig
impl Default for DebugConfig
Source§fn default() -> DebugConfig
fn default() -> DebugConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DebugConfigwhere
DebugConfig: Default,
impl<'de> Deserialize<'de> for DebugConfigwhere
DebugConfig: Default,
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 DebugConfig
impl RefUnwindSafe for DebugConfig
impl Send for DebugConfig
impl Sync for DebugConfig
impl Unpin for DebugConfig
impl UnsafeUnpin for DebugConfig
impl UnwindSafe for DebugConfig
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