pub struct PatternDetectionResult {
pub village_id: String,
pub lookback_days: u32,
pub after: String,
pub total_patterns: usize,
pub patterns: Vec<DetectedPattern>,
}Expand description
Result of pattern detection for a village.
Fields§
§village_id: String§lookback_days: u32§after: String§total_patterns: usize§patterns: Vec<DetectedPattern>Trait Implementations§
Source§impl Clone for PatternDetectionResult
impl Clone for PatternDetectionResult
Source§fn clone(&self) -> PatternDetectionResult
fn clone(&self) -> PatternDetectionResult
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 PatternDetectionResult
impl Debug for PatternDetectionResult
Auto Trait Implementations§
impl Freeze for PatternDetectionResult
impl RefUnwindSafe for PatternDetectionResult
impl Send for PatternDetectionResult
impl Sync for PatternDetectionResult
impl Unpin for PatternDetectionResult
impl UnsafeUnpin for PatternDetectionResult
impl UnwindSafe for PatternDetectionResult
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