19 releases

0.4.9 Feb 21, 2024
0.4.8 Nov 19, 2023
0.4.1 Aug 17, 2023
0.4.0 Jul 29, 2023
0.3.2 Jul 12, 2022

#150 in Rust patterns

Download history 8251/week @ 2024-01-03 8803/week @ 2024-01-10 7689/week @ 2024-01-17 7375/week @ 2024-01-24 8092/week @ 2024-01-31 8051/week @ 2024-02-07 7806/week @ 2024-02-14 7990/week @ 2024-02-21 8571/week @ 2024-02-28 7746/week @ 2024-03-06 7963/week @ 2024-03-13 9122/week @ 2024-03-20 8364/week @ 2024-03-27 7906/week @ 2024-04-03 8297/week @ 2024-04-10 7215/week @ 2024-04-17

32,965 downloads per month
Used in 143 crates (9 directly)

MIT/Apache

57KB
1K SLoC

Rust Latest Version License Docs.rs LOC Dependency Status

ImplicitClone

This library introduces the marker trait ImplicitClone intended for cheap-to-clone types that should be allowed to be cloned implicitly. It enables host libraries using this crate to have the syntax of Copy while actually calling the Clone implementation instead (usually when host library does such syntax in a macro).

The idea is that you must implement this trait on your cheap-to-clone types, and then the host library using the trait will allow users to pass values of your types and they will be cloned automatically.

Standard types that the ImplicitClone is already implemented for:

This crate is in the category rust-patterns but this is actually a Rust anti-pattern. In Rust the user should always handle borrowing and ownership by themselves. Nevertheless, this pattern is sometimes desirable. For example, UI frameworks that rely on propagating properties from ancestors to multiple children will always need to use Rc'd types to cheaply and concisely update every child component. This is the case in React-like frameworks like Yew.

This crate also provides a few convenient immutable types for handling cheap-to-clone strings, arrays and maps, you can find them in the modules sync and unsync. Those types implement ImplicitClone and hold only types that implement ImplicitClone as well. One big particularity: iterating on these types yields clones of the items and not references. This can be particularly handy when using a React-like framework.

Dependencies

~0–340KB