downcast-rs 2.0.1

Trait object downcasting support using only safe Rust. It supports type parameters, associated types, and type constraints.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "downcast-rs"
edition = "2021"
version = "2.0.1"
rust-version = "1.56"
repository = "https://github.com/marcianx/downcast-rs"
description = """
Trait object downcasting support using only safe Rust. It supports type
parameters, associated types, and type constraints.
"""
readme = "README.md"
keywords = ["downcast", "any", "trait", "associated", "no_std"]
license = "MIT/Apache-2.0"

[features]
default = ["std", "sync"]
std = []
sync = []