bindings: rust: make request_config optional in Chip.request_lines()
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Fri, 13 Jan 2023 13:51:09 +0000 (14:51 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Thu, 19 Jan 2023 12:58:50 +0000 (13:58 +0100)
commit5d7f8bec974c2b98803512d0e33c582046cbefac
treefd2f0520704a16fe61ed7eaf9dc4e883623a6002
parent388dda6c705cabc544fc264d69272312b8f06932
bindings: rust: make request_config optional in Chip.request_lines()

Request config is not necessary to request lines. In C API we accept
a NULL pointer, in C++ it's not necessary to assign a request_config
to the request builder, in Python the consumer and event buffer size
arguments are optional. Let's make rust bindings consistent and not
require the request config to be always present. Convert the argument
in request_lines to Option and update the rest of the code.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
bindings/rust/libgpiod/examples/gpio_events.rs
bindings/rust/libgpiod/examples/gpio_threaded_info_events.rs
bindings/rust/libgpiod/examples/gpioget.rs
bindings/rust/libgpiod/examples/gpiomon.rs
bindings/rust/libgpiod/examples/gpioset.rs
bindings/rust/libgpiod/src/chip.rs
bindings/rust/libgpiod/tests/common/config.rs
bindings/rust/libgpiod/tests/info_event.rs