From 458174f5efe1531ed876ac277456b13b19632037 Mon Sep 17 00:00:00 2001 From: softprops Date: Sat, 13 Oct 2018 19:23:56 -0400 Subject: rustfmt --- src/builder.rs | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/builder.rs b/src/builder.rs index 0d20da1..45eeb0f 100644 --- a/src/builder.rs +++ b/src/builder.rs @@ -1,16 +1,21 @@ //! Interfaces for building various structures -use self::super::Result; -use errors::Error; -use serde::Serialize; -use serde_json::{self, map::Map, Number, Value}; +// Std lib use std::cmp::Eq; use std::collections::{BTreeMap, HashMap}; use std::hash::Hash; use std::iter::IntoIterator; use std::iter::Peekable; + +// Third party +use serde::Serialize; +use serde_json::{self, map::Map, Number, Value}; use url::form_urlencoded; +// Ours +use errors::Error; +use Result; + #[derive(Default)] pub struct PullOptions { params: HashMap<&'static str, String>, -- cgit v1.2.3