pub struct BoardData {Show 14 fields
pub position: u8,
pub hashrate: Option<HashRate>,
pub expected_hashrate: Option<HashRate>,
pub board_temperature: Option<Temperature>,
pub intake_temperature: Option<Temperature>,
pub outlet_temperature: Option<Temperature>,
pub expected_chips: Option<u16>,
pub working_chips: Option<u16>,
pub serial_number: Option<String>,
pub chips: Vec<ChipData>,
pub voltage: Option<Voltage>,
pub frequency: Option<Frequency>,
pub tuned: Option<bool>,
pub active: Option<bool>,
}Fields§
§position: u8The board position in the miner, indexed from 0
hashrate: Option<HashRate>The current hashrate of the board
expected_hashrate: Option<HashRate>The expected or factory hashrate of the board
board_temperature: Option<Temperature>The board temperature, also sometimes called PCB temperature
intake_temperature: Option<Temperature>The temperature of the chips at the intake, usually from the first sensor on the board
outlet_temperature: Option<Temperature>The temperature of the chips at the outlet, usually from the last sensor on the board
expected_chips: Option<u16>The expected number of chips on this board
working_chips: Option<u16>The number of working chips on this board
serial_number: Option<String>The serial number of this board
chips: Vec<ChipData>Chip level information for this board May be empty, most machines do not provide this level of in depth information
voltage: Option<Voltage>The average voltage or voltage set point of this board
frequency: Option<Frequency>The average frequency or frequency set point of this board
tuned: Option<bool>Whether this board has been tuned and optimizations have completed
active: Option<bool>Whether this board is enabled and actively mining