1
2
3
4
5
6
7
8
9
10
// Allow stuff that prevents us from testing unidiomatic but valid public APIs
#![allow(unused_variables, dead_code)]
#![no_std] // Reduces rustdoc JSON size by 70%

#[derive(Debug)]
pub struct Struct {
    pub v1_field: usize,
}

pub fn function(v1_param: Struct) {}