#[repr(C)]pub struct cec_caps {
pub driver: [c_char; 32],
pub name: [c_char; 32],
pub available_log_addrs: u32,
pub capabilities: CEC_CAP,
pub version: u32,
}Expand description
CEC capabilities structure.
Fields§
§driver: [c_char; 32]Name of the CEC device driver.
name: [c_char; 32]Name of the CEC device. driver + name must be unique.
available_log_addrs: u32Number of available logical addresses.
capabilities: CEC_CAPCapabilities of the CEC adapter.
version: u32version of the CEC adapter framework.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for cec_caps
impl RefUnwindSafe for cec_caps
impl Send for cec_caps
impl Sync for cec_caps
impl Unpin for cec_caps
impl UnsafeUnpin for cec_caps
impl UnwindSafe for cec_caps
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more