| 68 | #[derive(Default, Builder, Debug)] |
| 69 | #[builder(setter(into))] |
| 70 | struct Channel { |
| 71 | #[builder(default = "0")] |
| 72 | token: i32, |
| 73 | #[builder(default = r#""42".into()"#)] |
| 74 | special_info: String, |
| 75 | } |
| 76 | |
| 77 | fn main() -> Result<(), Box<dyn std::error::Error>> { |
| 78 | let bob = User::builder(13, "bob@example.com") |
nothing calls this directly
no outgoing calls
no test coverage detected