summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorsoftprops <d.tangren@gmail.com>2018-10-13 19:23:56 -0400
committersoftprops <d.tangren@gmail.com>2018-10-13 19:23:56 -0400
commit458174f5efe1531ed876ac277456b13b19632037 (patch)
tree3fdc2ea2a91da640a60cf4665ee8deaa91a6e009 /src
parent92106b758e64ca1f9637272acea0eb83788df5b6 (diff)
rustfmt
Diffstat (limited to 'src')
-rw-r--r--src/builder.rs13
1 files changed, 9 insertions, 4 deletions
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>,