4 releases (2 stable)

1.1.0 Apr 15, 2021
1.0.0 Apr 6, 2021
1.0.0-beta Apr 4, 2021

#507 in Embedded development

Download history 846/week @ 2023-12-10 922/week @ 2023-12-17 563/week @ 2023-12-24 833/week @ 2023-12-31 1297/week @ 2024-01-07 1213/week @ 2024-01-14 1307/week @ 2024-01-21 1267/week @ 2024-01-28 1209/week @ 2024-02-04 1061/week @ 2024-02-11 1300/week @ 2024-02-18 1201/week @ 2024-02-25 1358/week @ 2024-03-03 1424/week @ 2024-03-10 1096/week @ 2024-03-17 1340/week @ 2024-03-24

5,292 downloads per month
Used in 40 crates (7 directly)

MIT OR Apache-2.0 OR Zlib

27KB
345 lines

unsize

Crates.io Status Docs.rs Status License CI Status

Goals and Targets

In embedded environments there are quite many use cases for custom smart pointers, for example to encapsulate ownership of objects on the stack or within a custom arena etc. One also wants to avoid unnecessary monomorphization that is for code size it is often desirable to use a dynamic trait object as indirection instead of instantiating a generic for a great number of type parameters. However, these can not be allocated (or often even constructed) directly. The standard library Box usually provides a sort of coercion: You can convert Box<[T; N]> to Box<[T]> for all array sizes or Box<u32> to Box<dyn Any>.

However, this does not work for custom smart pointers. The conversion is based on a nightly-only trait that one needs to explicitly opt-in to. This crate provides an alternative that works with no_std environments, for example to enable custom Box designs that avoid any dependency on a global allocator, or an arena based reference counted pointer, etc. For these use cases it is intended to replace the nightly unsizing mechanism with a stable and safe solution.

Usage

As a library developer you can implement the CoerciblePtr trait for your smart pointer type. This enables the use of all coercions with this pointer type. To provide custom unsize coercions to your own ?Sized wrapper type you can provide a safe constructor for Coercion.

As a user of a unsize-enabled pointer type, you should import the CoerceUnsize extension trait and the Coercion marker type. Then create an instance of Coercion to 'coerce' the pointee type of a smart pointer. The type defines a number of safe constructors and an unsafe escape hatch. The crate further defines a macro that provides safe coercion to other unsized types, if it compiles.

Additional

This project is licensed under Zlib OR Apache-2.0 OR MIT. You may alternatively choose the Unlicense instead in which case the copyright headers signify the parts dedicated to the public domain to the fullest possible extent instead.

No runtime deps