pub trait HasViconHardware {
// Required method
fn read_frame_subjects(&mut self) -> Result<Vec<ViconSubject>, ViconError>;
}Expand description
A thing that can read from a Vicon data stream.
Required Methods§
Sourcefn read_frame_subjects(&mut self) -> Result<Vec<ViconSubject>, ViconError>
fn read_frame_subjects(&mut self) -> Result<Vec<ViconSubject>, ViconError>
Returns a list of all identified ViconSubjects
in the next available frame from the system.