This library provides traits for borrow and borrow_mut functions, most commonly found in RefCells. Therefore it is possible to accept other kinds of RefCells like an AtomicRefCell or smart pointers around RefCells like Arc, Rc or Box.

Example

``` rust use std::io::{ Read, Cursor }; use std::cell::RefCell; use borrow_trait::{ BorrowRefMut };

fn takesbound(value: &T) -> Vec where T: for<'a> BorrowRefMut<'a, Target = C>, C: Read, { let mut result = vec![]; value.borrowmut().readtoend(&mut result).expect("Failed to read from value: 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

Usage

Simply add the following line to your Cargo.toml under [dependencies]:

toml borrow_trait = { version = "0.1" }

Notes

Planned

Credits

License

This project is licensed under either of

at your option.

Contribution

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