Struct input_sys::libinput_interface [] [src]

#[repr(C)]
pub struct libinput_interface { pub open_restricted: Option<unsafe extern "C" fn(_: *const c_char, _: c_int, _: *mut c_void) -> c_int>, pub close_restricted: Option<unsafe extern "C" fn(_: c_int, _: *mut c_void)>, }

@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 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 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 Debug for libinput_interface
[src]

[src]

Formats the value using the given formatter.

impl Copy for libinput_interface
[src]

impl Clone for libinput_interface
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more