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

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
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.