pub struct Sighting {
pub id: String,
pub attribute_id: String,
pub event_id: String,
pub org_id: Option<String>,
pub date_sighting: Option<String>,
pub source: Option<String>,
pub sighting_type: Option<String>,
pub uuid: Option<String>,
pub organisation: Option<Organisation>,
}Fields§
§id: String§attribute_id: String§event_id: String§org_id: Option<String>§date_sighting: Option<String>§source: Option<String>§sighting_type: Option<String>§uuid: Option<String>§organisation: Option<Organisation>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Sighting
impl<'de> Deserialize<'de> for Sighting
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Sighting
impl RefUnwindSafe for Sighting
impl Send for Sighting
impl Sync for Sighting
impl Unpin for Sighting
impl UnwindSafe for Sighting
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