MCPcopy Create free account
hub / github.com/estebank/makeit / z

Function z

makeit/examples/valid.rs:37–42  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

35 T: std::fmt::Debug;
36
37pub fn z() {
38 let x = Baz::builder().set_0(&1).set_1(Some(2)).build();
39 println!("{:?} {:?}", x.0, x.1);
40 let x = Baz::builder().set_0(&1).build();
41 println!("{:?} {:?}", x.0, x.1);
42}
43
44fn main() {
45 x();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected