Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ impl std::convert::From<{{{dataType}}}> for {{{classname}}} {

impl std::fmt::Display for {{{classname}}} {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self.0)
write!(f, "{}", self.0)
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ impl std::convert::From<String> for AnotherXmlInner {

impl std::fmt::Display for AnotherXmlInner {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self.0)
write!(f, "{}", self.0)
}
}

Expand Down Expand Up @@ -1255,7 +1255,7 @@ impl std::convert::From<String> for Err {

impl std::fmt::Display for Err {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self.0)
write!(f, "{}", self.0)
}
}

Expand Down Expand Up @@ -1303,7 +1303,7 @@ impl std::convert::From<String> for Error {

impl std::fmt::Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self.0)
write!(f, "{}", self.0)
}
}

Expand Down Expand Up @@ -1833,7 +1833,7 @@ impl std::convert::From<String> for NullableObject {

impl std::fmt::Display for NullableObject {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self.0)
write!(f, "{}", self.0)
}
}

Expand Down Expand Up @@ -2809,7 +2809,7 @@ impl std::convert::From<String> for Ok {

impl std::fmt::Display for Ok {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self.0)
write!(f, "{}", self.0)
}
}

Expand Down Expand Up @@ -2966,7 +2966,7 @@ impl std::convert::From<String> for Result {

impl std::fmt::Display for Result {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self.0)
write!(f, "{}", self.0)
}
}

Expand Down Expand Up @@ -3057,7 +3057,7 @@ impl std::convert::From<String> for StringObject {

impl std::fmt::Display for StringObject {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self.0)
write!(f, "{}", self.0)
}
}

Expand Down Expand Up @@ -3282,7 +3282,7 @@ impl std::convert::From<String> for XmlInner {

impl std::fmt::Display for XmlInner {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self.0)
write!(f, "{}", self.0)
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4909,7 +4909,7 @@ impl std::convert::From<String> for OuterString {

impl std::fmt::Display for OuterString {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self.0)
write!(f, "{}", self.0)
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ impl std::convert::From<String> for Email {

impl std::fmt::Display for Email {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self.0)
write!(f, "{}", self.0)
}
}

Expand Down
Loading