17 releases

0.7.3 Nov 16, 2023
0.7.1 Apr 13, 2023
0.7.0 Jan 26, 2023
0.6.2 Sep 27, 2022
0.2.3 Jul 29, 2021

#14 in Memory management

Download history 24724/week @ 2023-12-15 20943/week @ 2023-12-22 21088/week @ 2023-12-29 26785/week @ 2024-01-05 26892/week @ 2024-01-12 26648/week @ 2024-01-19 29477/week @ 2024-01-26 34835/week @ 2024-02-02 35177/week @ 2024-02-09 36067/week @ 2024-02-16 35587/week @ 2024-02-23 38286/week @ 2024-03-01 39940/week @ 2024-03-08 41378/week @ 2024-03-15 43664/week @ 2024-03-22 34581/week @ 2024-03-29

165,590 downloads per month
Used in 187 crates (21 directly)

Custom license

110KB
944 lines

yoke crates.io

This crate provides [Yoke<Y, C>][Yoke], which allows one to "yoke" (attach) a zero-copy deserialized object (say, a Cow<'a, str>) to the source it was deserialized from, (say, an Rc<[u8]>), known in this crate as a "cart", producing a type that looks like Yoke<Cow<'static, str>, Rc<[u8]>> and can be moved around with impunity.

Succinctly, this allows one to "erase" static lifetimes and turn them into dynamic ones, similarly to how dyn allows one to "erase" static types and turn them into dynamic ones.

Most of the time the yokeable Y type will be some kind of zero-copy deserializable abstraction, potentially with an owned variant (like Cow, ZeroVec, or an aggregate containing such types), and the cart C will be some smart pointer like Box<T>, Rc<T>, or Arc<T>, potentially wrapped in an Option<T>.

The key behind this crate is [Yoke::get()], where calling .get() on a type like Yoke<Cow<'static, str>, _> will get you a short-lived &'a Cow<'a, str>, restricted to the lifetime of the borrow used during .get(). This is entirely safe since the Cow borrows from the cart type C, which cannot be interfered with as long as the Yoke is borrowed by .get(). .get() protects access by essentially reifying the erased lifetime to a safe local one when necessary.

See the documentation of Yoke for more details.

More Information

For more information on development, authorship, contributing etc. please visit ICU4X home page.

Dependencies

~205KB