Skip to content

Instantly share code, notes, and snippets.

@allengeorge
Created April 26, 2017 23:20
Show Gist options
  • Save allengeorge/242643c69e54ea97f9cd087b2b67b9b4 to your computer and use it in GitHub Desktop.
Save allengeorge/242643c69e54ea97f9cd087b2b67b9b4 to your computer and use it in GitHub Desktop.
Sized Blanket Impls
impl<T> TReadTransport for T
where
T: Read + ?Sized,
{
}
impl<T> TReadTransport for Box<T>
where
T: Read + ?Sized,
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment