Struct libinput_interface
#[repr(C)]pub struct libinput_interface {
pub open_restricted: Option<unsafe extern "C" fn(*const i8, i32, *mut c_void) -> i32>,
pub close_restricted: Option<unsafe extern "C" fn(i32, *mut c_void)>,
}
Expand description
@ingroup base @struct libinput_interface
libinput does not open file descriptors to devices directly, instead open_restricted() and close_restricted() are called for each path that must be opened.
@see libinput_udev_create_context @see libinput_path_create_context
Fields§
§open_restricted: Option<unsafe extern "C" fn(*const i8, i32, *mut c_void) -> i32>
Open the device at the given path with the flags provided and return the fd.
@param path The device path to open @param flags Flags as defined by open(2) @param user_data The user_data provided in libinput_udev_create_context()
@return The file descriptor, or a negative errno on failure.
close_restricted: Option<unsafe extern "C" fn(i32, *mut c_void)>
Close the file descriptor.
@param fd The file descriptor to close @param user_data The user_data provided in libinput_udev_create_context()
Trait Implementations§
§impl Clone for libinput_interface
impl Clone for libinput_interface
§fn clone(&self) -> libinput_interface
fn clone(&self) -> libinput_interface
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for libinput_interface
impl Debug for libinput_interface
impl Copy for libinput_interface
Auto Trait Implementations§
impl Freeze for libinput_interface
impl RefUnwindSafe for libinput_interface
impl Send for libinput_interface
impl Sync for libinput_interface
impl Unpin for libinput_interface
impl UnwindSafe for libinput_interface
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