#[non_exhaustive]pub struct AsCodeOptions {
pub exclude_type_guards: bool,
pub exclude_meta: bool,
pub include_metrics_tracking: bool,
}Expand description
Options for DfirGraph::as_code_with_options.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.exclude_type_guards: boolControls whether type guards are emitted in codegen. Excluding type guards may result in worse
error messages, and may have little benefit on --release builds.
exclude_meta: boolControls whether the runtime meta graph + diagnostics JSON blobs are baked into the generated
Dfir::new(...) call.
include_metrics_tracking: boolControls whether metrics are tracked. Metrics tracking is opt-in: no tracking code is
generated unless this is set. Even if metrics are tracked, they still need to be reported
via the Context::metrics field.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AsCodeOptions
impl RefUnwindSafe for AsCodeOptions
impl Send for AsCodeOptions
impl Sync for AsCodeOptions
impl Unpin for AsCodeOptions
impl UnsafeUnpin for AsCodeOptions
impl UnwindSafe for AsCodeOptions
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more