ref_wrapper
Wrapper of dynamically borrowed data.
The author of this crate is not good at English.
Forgive me if the document is hard to read.
⚠ Warning!!!
This crate is not recommended.
Because we found unsafe
misuse in this crate. Specifically,
references obtained though RefWrap
become dangling references
after the RefWrap
destroyed.
Instead, we create ref_iter
Crate.
However, this one targets only iterators.
What is this?
This crate provide wrappers for value generated from dynamic borrowing types.
Wrapper | Target |
---|---|
RefWrap |
Ref |
RefWrapMut |
RefMut |
Examples
Normal use case.
let src = new;
let target = new;
assert_eq!;
;
Iterator use case.
let src = new;
let iter = new;
assert_eq!;
What's new.
v0.3.0
- Notice of non-recommendation.
v0.2.2
- Remove unused lifetime constraint of
RefIter::new
andRefIterMut::new
. - Minor refactoring.
v0.2.1
- Minor refactoring.
v0.2.0
- Crate is now
no_std
. new
method callback argument returns no longer need to wrapped inBox
.RefWrap
andRefWrapMut
implementIterator
in certain cases.- Instead of the above,
RefIter
andRefIterMut
have been removed.
v0.1.3-0.1.5
- Minor refactoring.
v0.1.2
- Some internal function is inlined.