Function set_parameters

Source
pub async fn set_parameters<IterTy>(
    parameters_to_set: IterTy,
    mion_addr: Ipv4Addr,
    parameter_port: Option<u16>,
    timeout: Option<Duration>,
) -> Result<SetMionParametersResponse, CatBridgeError>
where IterTy: Iterator<Item = (ParameterLocationSpecification, u8)>,
Expand description

Set one or more parameters for the parameter space of a MION bridge.

These are the parameters you can access from the normal CLI tools:

  • mionps.exe
  • mionparameterspace.exe

It’s unclear what many of these parameters are, but we know it contains at least certain values like the SDK version, NAND Mode, etc.

§Errors