How to implement a trait for a parameterized trait

前端 未结 1 2016
自闭症患者
自闭症患者 2020-12-11 03:13

I have a design issue, when using something like :

trait MyTrait { ... }

impl

        
相关标签:
1条回答
  • 2020-12-11 03:20

    Here’s an implementation using associated types (which means that you can only implement MyTrait for one K per type):

    use std::fmt;
    
    pub trait MyTrait {
        type K: fmt::Display;
        fn get_some_k(&self) -> Option<Self::K>;
    }
    
    impl<S: MyTrait> fmt::Display for S {
        fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
            write!(f, "{}", self.get_some_k().unwrap())
        }
    }
    
    fn main() { }
    

    However, when clarified like this it becomes clear that this approach won’t work either, because you’re implementing Display for all types that implement MyTrait—types that could have their own Display implementation. This is forbidden, and so you get E0210:

    error: type parameter S must be used as the type parameter for some local type (e.g. MyStruct<T>); only traits defined in the current crate can be implemented for a type parameter [E0210]

    Wrapping it in something—like your Ugly did—is the only way to allow such an implementation. Or implement a trait in your own crate rather than one in someone else’s (like Display is).

    0 讨论(0)
提交回复
热议问题