pub struct Sighting {
pub id: Option<String>,
pub attribute_id: Option<String>,
pub event_id: Option<String>,
pub org_id: Option<String>,
pub date_sighting: Option<String>,
pub uuid: Option<Uuid>,
pub source: Option<String>,
pub type: Option<String>,
pub attribute_uuid: Option<Uuid>,
pub organisation: Option<Box<SightingOrganisation>>,
}
Fields§
§id: Option<String>
§attribute_id: Option<String>
§event_id: Option<String>
§org_id: Option<String>
§date_sighting: Option<String>
§uuid: Option<Uuid>
§source: Option<String>
§type: Option<String>
§attribute_uuid: Option<Uuid>
§organisation: Option<Box<SightingOrganisation>>
Implementations§
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
impl StructuralPartialEq for Sighting
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