Module conreg::target[][src]

Expand description

Target Value Input

Iterators that are intended as target input for controllers

Constant Target Value

use conreg::target::*;

let mut target = TargetValue(0_isize);
for _v in 0..2 { println!("Value is {:?}", target.next()); }
target.set(1);
for _v in 0..2 { println!("Value is {:?}", target.next()); }

Structs

TargetValue