[][src]Struct opencv::core::Context

pub struct Context { /* fields omitted */ }

Methods

impl Context[src]

pub fn as_raw_Context(&self) -> *mut c_void[src]

pub unsafe fn from_raw_ptr(ptr: *mut c_void) -> Self[src]

impl Context[src]

pub fn default() -> Result<Context>[src]

pub fn new_with_type(dtype: i32) -> Result<Context>[src]

pub fn copy(c: &Context) -> Result<Context>[src]

pub fn create(&mut self) -> Result<bool>[src]

pub fn create_with_type(&mut self, dtype: i32) -> Result<bool>[src]

pub fn ndevices(&self) -> Result<size_t>[src]

pub fn device(&self, idx: size_t) -> Result<Device>[src]

pub fn ptr(&self) -> Result<&mut c_void>[src]

pub fn use_svm(&self) -> Result<bool>[src]

pub fn set_use_svm(&mut self, enabled: bool) -> Result<()>[src]

Trait Implementations

impl Drop for Context[src]

impl Send for Context[src]

Auto Trait Implementations

impl Unpin for Context

impl !Sync for Context

impl UnwindSafe for Context

impl RefUnwindSafe for Context

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]