#traits #object #pointers #associated #store #multi #casting

multi-trait-object

A type to store an object with all associated traits

5 releases

0.2.0 Mar 13, 2022
0.1.3 Mar 13, 2022
0.1.2 Mar 13, 2022
0.1.1 Mar 13, 2022
0.1.0 Mar 13, 2022

#11 in #casting

Download history 6/week @ 2024-01-28 1/week @ 2024-02-04 9/week @ 2024-02-18 16/week @ 2024-02-25 9/week @ 2024-03-03 7/week @ 2024-03-10 6/week @ 2024-03-17 1/week @ 2024-03-24 89/week @ 2024-03-31

105 downloads per month
Used in 2 crates (via trait-bound-typemap)

Apache-2.0

18KB
357 lines

Multitrait Object

This crate provides a pointer type that allows casting into all registered traits for a given type. This is done by storing the pointer to the v-table for each trait implementation on the type as well as the pointer to the data.

Safety

All unsafe parts are perfectly safe as far as my understanding goes. As this crate is still in an early stage there might be some side effects that haven't been noticed yet.

Usage

use multi_trait_object::*;
use std::fmt::Debug;

#[derive(Debug)]
struct MyStruct {
     a: u64,
}

trait MyTrait {}
trait MyOtherTrait {}

impl MyTrait for MyStruct{}
impl MyOtherTrait for MyStruct {}

impl_trait_object!(MyStruct, dyn MyTrait, dyn MyOtherTrait, dyn Debug);

fn main() {
    let obj = MyStruct {
        a: 5
    };

    let mto = obj.into_multitrait();

    {
        let debug = mto.downcast_trait::<dyn Debug>().unwrap();
        println!("{:?}", debug);
        let my_trait = mto.downcast_trait::<dyn MyTrait>().unwrap();
    }
    
    let trait_box: Box<dyn MyTrait> = mto.downcast_trait_boxed::<dyn MyTrait>().unwrap();    
}

License

Apache-2.0

No runtime deps