12 releases

0.5.0 Apr 21, 2023
0.4.0 Jan 30, 2022
0.3.0 Jun 4, 2021
0.2.1 May 17, 2021
0.1.3 Dec 17, 2020

#308 in Rust patterns

Download history 33551/week @ 2023-12-15 19149/week @ 2023-12-22 19309/week @ 2023-12-29 32041/week @ 2024-01-05 37888/week @ 2024-01-12 40483/week @ 2024-01-19 37617/week @ 2024-01-26 35096/week @ 2024-02-02 31851/week @ 2024-02-09 32429/week @ 2024-02-16 43418/week @ 2024-02-23 45471/week @ 2024-03-01 48311/week @ 2024-03-08 49736/week @ 2024-03-15 44596/week @ 2024-03-22 33372/week @ 2024-03-29

184,918 downloads per month
Used in 102 crates (39 directly)

MIT/Apache

14KB
135 lines

#[sealed]

MSRV 1.56.0

This crate provides a convenient and simple way to implement the sealed trait pattern, as described in the Rust API Guidelines [1].

[dependencies]
sealed = "0.5"

Example

In the following code structs A and B implement the sealed trait T, the C struct, which is not sealed, will error during compilation.

Examples are available in examples/, you can also see a demo in demo/.

use sealed::sealed;

#[sealed]
trait T {}

pub struct A;

#[sealed]
impl T for A {}

pub struct B;

#[sealed]
impl T for B {}

pub struct C;

impl T for C {} // compile error

Arguments

This is the list of arguments that can be used in a #[sealed] attribute:

  • #[sealed(erase)]: turns on trait bounds erasure. This is useful when using the #[sealed] macro inside a function. For an example, see bound-erasure-fn example.

  • #[sealed(pub(crate))] or #[sealed(pub(in some::path))]: allows to tune visibility of the generated sealing module (the default one is private). This useful when the trait and its impls are defined in different modules. For an example, see nesting example. Notice, that just pub is disallowed as breaks the whole idea of sealing.

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~330–780KB
~18K SLoC