pub struct TrackedDetection {
pub track_id: u64,
pub detection: Detection,
}Fields§
§track_id: u64§detection: DetectionTrait Implementations§
Source§impl Clone for TrackedDetection
impl Clone for TrackedDetection
Source§fn clone(&self) -> TrackedDetection
fn clone(&self) -> TrackedDetection
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 moreSource§impl Debug for TrackedDetection
impl Debug for TrackedDetection
Source§impl PartialEq for TrackedDetection
impl PartialEq for TrackedDetection
impl Copy for TrackedDetection
impl StructuralPartialEq for TrackedDetection
Auto Trait Implementations§
impl Freeze for TrackedDetection
impl RefUnwindSafe for TrackedDetection
impl Send for TrackedDetection
impl Sync for TrackedDetection
impl Unpin for TrackedDetection
impl UnsafeUnpin for TrackedDetection
impl UnwindSafe for TrackedDetection
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more