Trait ControlSourceExt
Other items ingstreamer::prelude
pub trait ControlSourceExt: 'static { fn value(&self, timestamp: ClockTime) -> Option<f64>; }
Trait containing all ControlSource methods.
ControlSource
fn value(&self, timestamp: ClockTime) -> Option<f64>
Gets the value for this ControlSource at a given timestamp.
timestamp
the time for which the value should be returned
false if the value couldn’t be returned, true otherwise.
false
true
value
the value
impl<O: IsA<ControlSource>> ControlSourceExt for O