pub struct CollectiveParams {
pub unit_type: Option<CodeUnitType>,
pub min_usage: u64,
pub limit: usize,
}Expand description
Parameters for Query 12: Collective Patterns.
Fields§
§unit_type: Option<CodeUnitType>Optional type filter.
min_usage: u64Minimum collective usage count.
limit: usizeMaximum results.
Trait Implementations§
Source§impl Clone for CollectiveParams
impl Clone for CollectiveParams
Source§fn clone(&self) -> CollectiveParams
fn clone(&self) -> CollectiveParams
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 CollectiveParams
impl RefUnwindSafe for CollectiveParams
impl Send for CollectiveParams
impl Sync for CollectiveParams
impl Unpin for CollectiveParams
impl UnsafeUnpin for CollectiveParams
impl UnwindSafe for CollectiveParams
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