pub struct TextReportOptions {
pub show_structural_blind_spots: bool,
pub show_all_temporal_couplings: bool,
}Expand description
Options for the default human-readable text report.
Fields§
§show_structural_blind_spots: boolInclude the full structural blind-spot descriptions instead of a pointer.
show_all_temporal_couplings: boolInclude all temporal-coupling pairs instead of the concise default.
Trait Implementations§
Source§impl Clone for TextReportOptions
impl Clone for TextReportOptions
Source§fn clone(&self) -> TextReportOptions
fn clone(&self) -> TextReportOptions
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 moreimpl Copy for TextReportOptions
Source§impl Debug for TextReportOptions
impl Debug for TextReportOptions
Source§impl Default for TextReportOptions
impl Default for TextReportOptions
Source§fn default() -> TextReportOptions
fn default() -> TextReportOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TextReportOptions
impl RefUnwindSafe for TextReportOptions
impl Send for TextReportOptions
impl Sync for TextReportOptions
impl Unpin for TextReportOptions
impl UnsafeUnpin for TextReportOptions
impl UnwindSafe for TextReportOptions
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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