/// Parameter IDs that are required when getting or setting parameters on the robot
#[derive(Debug, Clone, PartialEq, Copy)]pubenumParamIDs{
HomingStatus =2800,
LastError =320,}implParamIDs{/// Get the value of the parameter ID as an 32-bit integer type
pubfnvalue(&self)->i32{*selfasi32}/// Get the value of the parameter ID as a String type
pubfnto_string(&self)-> String{self.value().to_string()}}