We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
println!
1 parent 2caeb65 commit 23f033aCopy full SHA for 23f033a
1 file changed
rust/src/datatypes.rs
@@ -93,7 +93,6 @@ where
93
impl DataType {
94
/// Parse a data type from a JSON representation
95
fn from(json: &Value) -> Result<DataType> {
96
- //println!("DataType::from({:?})", json);
97
match *json {
98
Value::Object(ref map) => match map.get("name") {
99
Some(s) if s == "bool" => Ok(DataType::Boolean),
@@ -212,7 +211,6 @@ impl Field {
212
211
213
/// Parse a field definition from a JSON representation
214
pub fn from(json: &Value) -> Result<Self> {
215
- //println!("Field::from({:?}", json);
216
217
Value::Object(ref map) => {
218
let name = match map.get("name") {
0 commit comments