pub struct Cot<D> {
pub version: String,
pub uid: String,
pub cot_type: String,
pub time: DateTime<Utc>,
pub start: DateTime<Utc>,
pub stale: DateTime<Utc>,
pub detail: D,
pub point: Point,
}Fields§
§version: String§uid: String§cot_type: String§time: DateTime<Utc>§start: DateTime<Utc>§stale: DateTime<Utc>§detail: D§point: PointTrait Implementations§
Source§impl Default for Cot<TakMarkerDetail>
impl Default for Cot<TakMarkerDetail>
TAK CoT Marker
Source§impl<'de, D> Deserialize<'de> for Cot<D>where
D: Deserialize<'de>,
impl<'de, D> Deserialize<'de> for Cot<D>where
D: Deserialize<'de>,
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<D> StructuralPartialEq for Cot<D>
Auto Trait Implementations§
impl<D> Freeze for Cot<D>where
D: Freeze,
impl<D> RefUnwindSafe for Cot<D>where
D: RefUnwindSafe,
impl<D> Send for Cot<D>where
D: Send,
impl<D> Sync for Cot<D>where
D: Sync,
impl<D> Unpin for Cot<D>where
D: Unpin,
impl<D> UnwindSafe for Cot<D>where
D: UnwindSafe,
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