bindings: rust: allow cloning line::InfoRef -> line::Info
authorErik Schilling <erik.schilling@linaro.org>
Tue, 3 Oct 2023 09:39:59 +0000 (11:39 +0200)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 4 Oct 2023 11:23:22 +0000 (13:23 +0200)
commit808d15ebffdcee5e418a210815e57e6128e0f803
tree26bdbdfc97cf035d171ad035b7b5182e52555d26
parentb2903487260050b1d798a85f3b5ec0c46f9bb0b0
bindings: rust: allow cloning line::InfoRef -> line::Info

While one would usually use the ToOwned [1] contract in rust, libgpipd's
API only allows copying that may fail.

Thus, we cannot implement the existing trait and roll our own method. I
went with `try_clone` since that seems to be used in similar cases across
the `std` crate [2].

It also closes the gap of not having any way to clone owned instances.
Though - again - not through the Clone trait which may not fail [3].

[1] https://doc.rust-lang.org/std/borrow/trait.ToOwned.html
[2] https://doc.rust-lang.org/std/index.html?search=try_clone
[3] https://doc.rust-lang.org/std/clone/trait.Clone.html

Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Erik Schilling <erik.schilling@linaro.org>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
bindings/rust/libgpiod/src/lib.rs
bindings/rust/libgpiod/src/line_info.rs
bindings/rust/libgpiod/tests/line_info.rs