Struct opencv::core::AsyncArray
source · pub struct AsyncArray { /* private fields */ }
Expand description
Returns result of asynchronous operations
Object has attached asynchronous state. Assignment operator doesn’t clone asynchronous state (it is shared between all instances).
Result can be fetched via get() method only once.
Implementations§
source§impl AsyncArray
impl AsyncArray
pub fn default() -> AsyncArray
pub fn copy(o: &AsyncArray) -> AsyncArray
pub fn copy_mut(o: AsyncArray) -> Result<AsyncArray>
Trait Implementations§
source§impl AsyncArrayTrait for AsyncArray
impl AsyncArrayTrait for AsyncArray
source§impl AsyncArrayTraitConst for AsyncArray
impl AsyncArrayTraitConst for AsyncArray
fn as_raw_AsyncArray(&self) -> *const c_void
source§fn get_with_timeout(
&self,
dst: &mut dyn ToOutputArray,
timeout_ns: i64
) -> Result<bool>
fn get_with_timeout( &self, dst: &mut dyn ToOutputArray, timeout_ns: i64 ) -> Result<bool>
Retrieving the result with timeout Read more