Update some imports

This commit is contained in:
Jonas Platte 2020-04-24 12:29:44 +02:00
parent 6770ed61c1
commit 6fa05a1a6f
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
2 changed files with 2 additions and 3 deletions

View File

@ -1,8 +1,6 @@
use std::borrow::Cow;
use std::mem;
use std::{borrow::Cow, mem};
use serde::ser;
use url::form_urlencoded::{
Serializer as UrlEncodedSerializer, Target as UrlEncodedTarget,
};

View File

@ -3,6 +3,7 @@ use std::str;
use serde::ser;
use crate::urlencoded::error::Error;
pub struct PartSerializer<S> {
sink: S,
}