pub struct EventOprs {
pub oprs: Option<HashMap<String, f32>>,
pub dprs: Option<HashMap<String, f32>>,
pub ccwms: Option<HashMap<String, f32>>,
}
Expand description
EventOprs : OPR, DPR, and CCWM for teams at the event.
Fields§
§oprs: Option<HashMap<String, f32>>
A key-value pair with team key (eg frc254
) as key and OPR as value.
dprs: Option<HashMap<String, f32>>
A key-value pair with team key (eg frc254
) as key and DPR as value.
ccwms: Option<HashMap<String, f32>>
A key-value pair with team key (eg frc254
) as key and CCWM as value.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EventOprs
impl<'de> Deserialize<'de> for EventOprs
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 EventOprs
Auto Trait Implementations§
impl Freeze for EventOprs
impl RefUnwindSafe for EventOprs
impl Send for EventOprs
impl Sync for EventOprs
impl Unpin for EventOprs
impl UnwindSafe for EventOprs
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