Lines Matching defs:Annotations
29 pub struct Annotations { struct
31 opaque: bool,
34 hide: bool,
37 use_instead_of: Option<Vec<String>>,
40 disallow_copy: bool,
42 disallow_debug: bool,
44 disallow_default: bool,
47 private_fields: Option<bool>,
50 accessor_kind: Option<FieldAccessorKind>,
78 impl Default for Annotations { argument
95 impl Annotations { implementation
98 pub fn new(cursor: &clang::Cursor) -> Option<Annotations> { in new()