pub struct TimelineConfig {
pub width: usize,
pub show_names: bool,
pub show_timing: bool,
pub group_by_type: bool,
}Expand description
Timeline visualization configuration.
Fields§
§width: usizeWidth in characters (for ASCII output)
show_names: boolShow operation names
show_timing: boolShow timing information
group_by_type: boolGroup by operation type
Trait Implementations§
Source§impl Clone for TimelineConfig
impl Clone for TimelineConfig
Source§fn clone(&self) -> TimelineConfig
fn clone(&self) -> TimelineConfig
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 TimelineConfig
impl Debug for TimelineConfig
Auto Trait Implementations§
impl Freeze for TimelineConfig
impl RefUnwindSafe for TimelineConfig
impl Send for TimelineConfig
impl Sync for TimelineConfig
impl Unpin for TimelineConfig
impl UnwindSafe for TimelineConfig
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