pub trait IofwOutputSpecification {
const ANALOG_OUTPUT_COUNT: usize;
const HAS_OPT_IFACE_B: bool;
// Provided method
fn create_output_params() -> IofwOutputParams { ... }
}Expand description
Specification of outputs.
Required Associated Constants§
sourceconst ANALOG_OUTPUT_COUNT: usize
const ANALOG_OUTPUT_COUNT: usize
The number of analog outputs.
sourceconst HAS_OPT_IFACE_B: bool
const HAS_OPT_IFACE_B: bool
Whether optical interface B is available or not.
Provided Methods§
sourcefn create_output_params() -> IofwOutputParams
fn create_output_params() -> IofwOutputParams
Instantiate output parameters.
Object Safety§
This trait is not object safe.