This library provides traits for borrow
and borrow_mut
functions, most commonly found in RefCell
s. Therefore it is possible to accept other kinds of RefCell
s like an AtomicRefCell
or smart pointers around RefCell
s like Arc
, Rc
or Box
.
``` rust use std::io::{ Read, Cursor }; use std::cell::RefCell; use borrow_trait::{ BorrowRefMut };
fn takesboundvalue: T
");
result
}
let value = RefCell::new(Cursor::new(vec![0, 1, 2, 3])); asserteq!(takesbound(&value), vec![0, 1, 2, 3]); ```
For more details please refer to the documentation, that you can find here: https://docs.rs/borrow_trait
Simply add the following line to your Cargo.toml
under [dependencies]
:
toml
borrow_trait = { version = "0.1" }
BorrowRef<'a, C, T>
and BorrowRefMut<'a, C, T>
.
This feature requires Generic Associated Lifetimes
rust-lang/rust#44265This project is licensed under either of
at your option.
If you have any issue please don't hesitate to create one :)
Before you make a PR please ensure, that your code has been formatted with rustfmt
:
cargo fmt