[][src]Trait opencv::prelude::KeyboardEventTrait

pub trait KeyboardEventTrait {
    pub fn as_raw_KeyboardEvent(&self) -> *const c_void;
pub fn as_raw_mut_KeyboardEvent(&mut self) -> *mut c_void; pub fn action(&self) -> KeyboardEvent_Action { ... }
pub fn set_action(&mut self, val: KeyboardEvent_Action) { ... }
pub fn symbol(&self) -> String { ... }
pub fn set_symbol(&mut self, val: &str) { ... }
pub fn code(&self) -> u8 { ... }
pub fn set_code(&mut self, val: u8) { ... }
pub fn modifiers(&self) -> i32 { ... }
pub fn set_modifiers(&mut self, val: i32) { ... } }

This class represents a keyboard event.

Required methods

Loading content...

Provided methods

pub fn action(&self) -> KeyboardEvent_Action[src]

pub fn set_action(&mut self, val: KeyboardEvent_Action)[src]

pub fn symbol(&self) -> String[src]

pub fn set_symbol(&mut self, val: &str)[src]

pub fn code(&self) -> u8[src]

pub fn set_code(&mut self, val: u8)[src]

pub fn modifiers(&self) -> i32[src]

pub fn set_modifiers(&mut self, val: i32)[src]

Loading content...

Implementors

impl KeyboardEventTrait for KeyboardEvent[src]

Loading content...