Trait opencv::core::StreamTraitConst  
source · pub trait StreamTraitConst {
    // Required method
    fn as_raw_Stream(&self) -> *const c_void;
    // Provided methods
    fn query_if_complete(&self) -> Result<bool> { ... }
    fn cuda_ptr(&self) -> Result<*mut c_void> { ... }
}Expand description
Constant methods for core::Stream
Required Methods§
fn as_raw_Stream(&self) -> *const c_void
Provided Methods§
sourcefn query_if_complete(&self) -> Result<bool>
 
fn query_if_complete(&self) -> Result<bool>
Returns true if the current stream queue is finished. Otherwise, it returns false.