pub struct HotspotParams {
pub top_k: usize,
pub min_score: f32,
pub unit_types: Vec<CodeUnitType>,
}Expand description
Parameters for Query 24: Hotspot Detection.
Fields§
§top_k: usizeMaximum results.
min_score: f32Minimum hotspot score threshold.
unit_types: Vec<CodeUnitType>Unit types to consider (empty = all).
Trait Implementations§
Source§impl Clone for HotspotParams
impl Clone for HotspotParams
Source§fn clone(&self) -> HotspotParams
fn clone(&self) -> HotspotParams
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 moreAuto Trait Implementations§
impl Freeze for HotspotParams
impl RefUnwindSafe for HotspotParams
impl Send for HotspotParams
impl Sync for HotspotParams
impl Unpin for HotspotParams
impl UnsafeUnpin for HotspotParams
impl UnwindSafe for HotspotParams
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