pub struct FixedHybridTemplate {
pub output_path: String,
pub thread_count: usize,
pub task_count: usize,
pub render_mode: RenderMode,
}
Fields§
§output_path: String
§thread_count: usize
§task_count: usize
§render_mode: RenderMode
Implementations§
Source§impl FixedHybridTemplate
impl FixedHybridTemplate
pub fn new(thread_count: usize, task_count: usize) -> Self
pub fn with_render_mode(self, mode: RenderMode) -> Self
pub fn with_variable_details(self, _enable: bool) -> Self
pub fn with_enhanced_insights(self, _enable: bool) -> Self
Sourcepub fn generate_hybrid_dashboard(
&self,
data: &HybridAnalysisData,
) -> Result<String, Box<dyn Error>>
pub fn generate_hybrid_dashboard( &self, data: &HybridAnalysisData, ) -> Result<String, Box<dyn Error>>
Generate hybrid dashboard HTML using external template
Sourcepub fn generate_variable_detailed_html(
&self,
data: &HybridAnalysisData,
) -> String
pub fn generate_variable_detailed_html( &self, data: &HybridAnalysisData, ) -> String
Generate detailed variable breakdown HTML
Auto Trait Implementations§
impl Freeze for FixedHybridTemplate
impl RefUnwindSafe for FixedHybridTemplate
impl Send for FixedHybridTemplate
impl Sync for FixedHybridTemplate
impl Unpin for FixedHybridTemplate
impl UnwindSafe for FixedHybridTemplate
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> 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