pub struct SightingEntry {
pub id: String,
pub timestamp: Option<String>,
pub source: Option<String>,
pub org_name: Option<String>,
pub sighting_type: SightingType,
}Fields§
§id: String§timestamp: Option<String>§source: Option<String>§org_name: Option<String>§sighting_type: SightingTypeTrait Implementations§
Source§impl Clone for SightingEntry
impl Clone for SightingEntry
Source§fn clone(&self) -> SightingEntry
fn clone(&self) -> SightingEntry
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 SightingEntry
impl RefUnwindSafe for SightingEntry
impl Send for SightingEntry
impl Sync for SightingEntry
impl Unpin for SightingEntry
impl UnwindSafe for SightingEntry
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