Created
April 26, 2017 23:20
-
-
Save allengeorge/242643c69e54ea97f9cd087b2b67b9b4 to your computer and use it in GitHub Desktop.
Sized Blanket Impls
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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