pub struct CouplingParams {
pub unit_id: Option<u64>,
pub min_strength: f32,
}Expand description
Parameters for Query 15: Coupling Detection.
Fields§
§unit_id: Option<u64>Optional unit to centre the search on. If None, scan all.
min_strength: f32Minimum coupling strength threshold.
Trait Implementations§
Source§impl Clone for CouplingParams
impl Clone for CouplingParams
Source§fn clone(&self) -> CouplingParams
fn clone(&self) -> CouplingParams
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 CouplingParams
impl RefUnwindSafe for CouplingParams
impl Send for CouplingParams
impl Sync for CouplingParams
impl Unpin for CouplingParams
impl UnsafeUnpin for CouplingParams
impl UnwindSafe for CouplingParams
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