Struct input_sys::libinput_interface[][src]

#[repr(C)]
pub struct libinput_interface { pub open_restricted: Option<unsafe extern "C" fn(path: *const c_char, flags: c_int, user_data: *mut c_void) -> c_int>, pub close_restricted: Option<unsafe extern "C" fn(fd: c_int, user_data: *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(path: *const c_char, flags: c_int, user_data: *mut c_void) -> c_int>

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(fd: c_int, user_data: *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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.