pub struct SightingCount {
pub total: u64,
pub positive: u64,
pub negative: u64,
pub expiration: u64,
pub first_seen: Option<String>,
pub last_seen: Option<String>,
}Fields§
§total: u64§positive: u64§negative: u64§expiration: u64§first_seen: Option<String>§last_seen: Option<String>Trait Implementations§
Source§impl Clone for SightingCount
impl Clone for SightingCount
Source§fn clone(&self) -> SightingCount
fn clone(&self) -> SightingCount
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 SightingCount
impl RefUnwindSafe for SightingCount
impl Send for SightingCount
impl Sync for SightingCount
impl Unpin for SightingCount
impl UnwindSafe for SightingCount
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