pub trait GStreamingCompiledTraitConst {
// Required method
fn as_raw_GStreamingCompiled(&self) -> *const c_void;
// Provided methods
fn running(&self) -> Result<bool> { ... }
fn to_bool(&self) -> Result<bool> { ... }
}
Expand description
Constant methods for crate::gapi::GStreamingCompiled
Required Methods§
fn as_raw_GStreamingCompiled(&self) -> *const c_void
Provided Methods§
Sourcefn running(&self) -> Result<bool>
fn running(&self) -> Result<bool>
Test if the pipeline is running.
Note: This method is not thread-safe (with respect to the user side) at the moment. Protect the access if start()/stop()/setSource() may be called on the same object in multiple threads in your application.
§Returns
true if the current stream is not over yet.