remove unused function type parameter

This commit is contained in:
Ty Overby 2018-02-07 20:23:07 -08:00
parent 24b007e194
commit 5081ac7c08
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ pub fn config() -> Config {
///
/// If the serialization would take more bytes than allowed by the size limit, an error
/// is returned and *no bytes* will be written into the `Writer`.
pub fn serialize_into<W, T: ?Sized, O>(writer: W, value: &T) -> Result<()>
pub fn serialize_into<W, T: ?Sized>(writer: W, value: &T) -> Result<()>
where
W: std::io::Write,
T: serde::Serialize,