blob: 9660fbf235af17fc000f9d123e9b3d317d7aa72d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* automatically generated by rust-bindgen */
#![allow(non_snake_case)]
pub const NSID_LENGTH: ::std::os::raw::c_uint = 10;
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Struct_nsID {
pub _vftable: *const _vftable_Struct_nsID,
}
#[repr(C)]
pub struct _vftable_Struct_nsID {
pub ToProvidedString: unsafe extern "C" fn(this:
*mut ::std::os::raw::c_void,
aDest:
*mut [::std::os::raw::c_char; 10usize]),
}
impl ::std::clone::Clone for Struct_nsID {
fn clone(&self) -> Self { *self }
}
#[test]
fn bindgen_test_layout_Struct_nsID() {
assert_eq!(::std::mem::size_of::<Struct_nsID>() , 8usize);
assert_eq!(::std::mem::align_of::<Struct_nsID>() , 8usize);
}
|