traitcast icon indicating copy to clipboard operation
traitcast copied to clipboard

Cast between dynamic trait objects

Results 2 traitcast issues
Sort by recently updated
recently updated
newest added

Hi, I tried to used the crate like this: ``` extern crate traitcast; use traitcast::{TraitcastFrom, Traitcast}; pub trait Widget: TraitcastFrom{ fn print(&self){ println!("Yay from the trait!"); } } struct One(u32);...

Fix several rustc warnings about using bare trait objects