pub struct ZebraTeam {
pub team_key: String,
pub xs: Vec<f64>,
pub ys: Vec<f64>,
}
Fields§
§team_key: String
The TBA team key for the Zebra MotionWorks data.
xs: Vec<f64>
A list containing doubles and nulls representing a teams X position in feet at the corresponding timestamp. A null value represents no tracking data for a given timestamp.
ys: Vec<f64>
A list containing doubles and nulls representing a teams Y position in feet at the corresponding timestamp. A null value represents no tracking data for a given timestamp.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ZebraTeam
impl<'de> Deserialize<'de> for ZebraTeam
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 ZebraTeam
Auto Trait Implementations§
impl Freeze for ZebraTeam
impl RefUnwindSafe for ZebraTeam
impl Send for ZebraTeam
impl Sync for ZebraTeam
impl Unpin for ZebraTeam
impl UnwindSafe for ZebraTeam
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