[][src]Trait opencv::core::prelude::PlatformInfoTrait

pub trait PlatformInfoTrait {
    pub fn as_raw_PlatformInfo(&self) -> *const c_void;
pub fn as_raw_mut_PlatformInfo(&mut self) -> *mut c_void; pub fn name(&self) -> Result<String> { ... }
pub fn vendor(&self) -> Result<String> { ... }
pub fn version(&self) -> Result<String> { ... }
pub fn version_major(&self) -> Result<i32> { ... }
pub fn version_minor(&self) -> Result<i32> { ... }
pub fn device_number(&self) -> Result<i32> { ... }
pub fn get_device(&self, device: &mut Device, d: i32) -> Result<()> { ... }
pub fn empty(&self) -> Result<bool> { ... } }

Required methods

Loading content...

Provided methods

pub fn name(&self) -> Result<String>[src]

pub fn vendor(&self) -> Result<String>[src]

pub fn version(&self) -> Result<String>[src]

See CL_PLATFORM_VERSION

pub fn version_major(&self) -> Result<i32>[src]

pub fn version_minor(&self) -> Result<i32>[src]

pub fn device_number(&self) -> Result<i32>[src]

pub fn get_device(&self, device: &mut Device, d: i32) -> Result<()>[src]

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

Loading content...

Implementors

impl PlatformInfoTrait for PlatformInfo[src]

Loading content...