pub struct AnalyzeOpts {
pub segment_duration: Duration,
pub subsample: i32,
}Expand description
Options controlling complexity analysis.
Fields§
§segment_duration: DurationDuration of each aggregation segment.
subsample: i32Analyze every Nth frame; values <= 0 are treated as 1.
Trait Implementations§
Source§impl Clone for AnalyzeOpts
impl Clone for AnalyzeOpts
Source§fn clone(&self) -> AnalyzeOpts
fn clone(&self) -> AnalyzeOpts
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 moreSource§impl Debug for AnalyzeOpts
impl Debug for AnalyzeOpts
Auto Trait Implementations§
impl Freeze for AnalyzeOpts
impl RefUnwindSafe for AnalyzeOpts
impl Send for AnalyzeOpts
impl Sync for AnalyzeOpts
impl Unpin for AnalyzeOpts
impl UnsafeUnpin for AnalyzeOpts
impl UnwindSafe for AnalyzeOpts
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