Skip to content

Instantly share code, notes, and snippets.

@dns2utf8
Created March 21, 2021 10:11
Show Gist options
  • Save dns2utf8/379f17cfdd30a90298e1d632a2b86d84 to your computer and use it in GitHub Desktop.
Save dns2utf8/379f17cfdd30a90298e1d632a2b86d84 to your computer and use it in GitHub Desktop.
// Source: https://gist.github.com/dns2utf8/379f17cfdd30a90298e1d632a2b86d84
use core::fmt::Debug;
#[derive(Debug)]
struct A<BeCc: Debug> {
data: BeCc,
}
fn main() {
let a = A {
data: String::from("a"),
};
println!("{:?}", a);
}
@dns2utf8
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment