// rustfmt-max_width: 120 // rustfmt-comment_width: 110 impl Struct { fn fun() { let result = match ::deserialize(&json) { Ok(v) => v, Err(e) => match ::deserialize(&json) { Ok(v) => return Err(Error::with_json(v)), Err(e2) => return Err(Error::with_json(e)), }, }; } }