blob: 5cfac9d81ed1b069cf467db6c4e4f1517b397f91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* automatically generated by rust-bindgen */
#![allow(non_snake_case)]
pub const NSID_LENGTH: ::std::os::raw::c_uint = 10;
#[repr(C)]
pub struct bindgen_vtable__bindgen_id_4 {
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct nsID {
pub vtable_: *const bindgen_vtable__bindgen_id_4,
}
#[test]
fn bindgen_test_layout_nsID() {
assert_eq!(::std::mem::size_of::<nsID>() , 8usize);
assert_eq!(::std::mem::align_of::<nsID>() , 8usize);
}
impl Clone for nsID {
fn clone(&self) -> Self { *self }
}
|