bindings: rust: make mutators return &mut self
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Fri, 13 Jan 2023 14:12:46 +0000 (15:12 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Thu, 26 Jan 2023 10:12:44 +0000 (11:12 +0100)
commitfa358c22683707429a012aa215d385fa28cbe69a
tree84b5dd92ea0ee8ef3b6b9eb0e4bf2140847dac47
parent27a69b0bfd4b6812f5a31848c5433069b7940151
bindings: rust: make mutators return &mut self

In C++ bindings we can chain the mutators as they all return a reference
to the object they modify. It's a common practice to allow that in Rust
too so make all mutators that don't already do it return a mutable
reference to self.

It's also logically incorrect to make mutators borrow an immutable
reference to self. Even if that builds - as we're fiddling with C
pointers - it could change in the future. It's fine for getters but
setters should all use mutable references.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
13 files changed:
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/line_config.rs
bindings/rust/libgpiod/src/line_request.rs
bindings/rust/libgpiod/src/request_config.rs
bindings/rust/libgpiod/tests/common/config.rs
bindings/rust/libgpiod/tests/info_event.rs
bindings/rust/libgpiod/tests/line_config.rs
bindings/rust/libgpiod/tests/line_request.rs
bindings/rust/libgpiod/tests/request_config.rs