Skip to content

Instantly share code, notes, and snippets.

@rust-play
Created November 22, 2020 20:35
Show Gist options
  • Save rust-play/0aacfa288b7a21ddca0b283d89802ca3 to your computer and use it in GitHub Desktop.
Save rust-play/0aacfa288b7a21ddca0b283d89802ca3 to your computer and use it in GitHub Desktop.
Code shared from the Rust Playground
pub trait Corge<T> {
type Fred;
}
impl Corge<u8> for () {
type Fred = u32;
}
pub trait Waldo {
type Quax;
}
impl Waldo for u32 {
type Quax = u8;
}
pub trait Grault
where
(): Corge<Self::Thud>,
{
type Thud;
fn bar(_: <() as Corge<Self::Thud>>::Fred) {}
}
impl<T> Grault for T
where
T: Waldo,
(): Corge<T::Quax>,
<() as Corge<T::Quax>>::Fred: Waldo,
{
type Thud = u8;
}
pub trait Plugh<I> {
fn baz();
}
#[derive(Copy, Clone, Debug)]
pub struct Qiz<T> {
foo: T,
}
impl<T> Plugh<<() as Corge<T::Thud>>::Fred> for Qiz<T>
where
T: Grault,
(): Corge<T::Thud>,
{
fn baz() {}
}
pub fn test2() {
<Qiz<u32> as Plugh<u32>>::baz();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment