pub struct TeamRobot {
pub year: i32,
pub robot_name: String,
pub key: String,
pub team_key: String,
}
Fields§
§year: i32
Year this robot competed in.
robot_name: String
Name of the robot as provided by the team.
key: String
Internal TBA identifier for this robot.
team_key: String
TBA team key for this robot.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TeamRobot
impl<'de> Deserialize<'de> for TeamRobot
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 TeamRobot
Auto Trait Implementations§
impl Freeze for TeamRobot
impl RefUnwindSafe for TeamRobot
impl Send for TeamRobot
impl Sync for TeamRobot
impl Unpin for TeamRobot
impl UnwindSafe for TeamRobot
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