mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-29 06:59:48 +00:00
15 lines
239 B
Rust
15 lines
239 B
Rust
// NOTE: generate fully expanded version with `cargo expand`.
|
|
//
|
|
// cargo expand --example doc_example
|
|
|
|
#[macro_use]
|
|
extern crate derive_builder;
|
|
|
|
#[allow(dead_code)]
|
|
#[derive(Builder)]
|
|
struct Lorem {
|
|
ipsum: u32,
|
|
}
|
|
|
|
fn main() {}
|