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§

source

const ANALOG_OUTPUT_COUNT: usize

The number of analog outputs.

source

const HAS_OPT_IFACE_B: bool

Whether optical interface B is available or not.

Provided Methods§

source

fn create_output_params() -> IofwOutputParams

Instantiate output parameters.

Object Safety§

This trait is not object safe.

Implementors§