this post was submitted on 10 Sep 2023
1 points (100.0% liked)

Rust Programming

8596 readers
27 users here now

founded 6 years ago
MODERATORS
 

I want to do basically this:

struct MyStruct < T> {
    data: T
}

impl < T> for MyStruct < T> {
    fn foo() {
        println!("Generic")
    }
}

impl for MyStruct < u32> {
    fn foo() {
        println!("u32")
    }
}

I have tried doing

impl < T: !u32> for MyStruct < T> {
    ...
}

But it doesn't seem to work. I've also tried various things with traits but none of them seem to work. Is this even possible?

EDIT: Fixed formatting

no comments (yet)
sorted by: hot top controversial new old
there doesn't seem to be anything here