blob: d93121d3dd7d824ed685a9c121ef14fadf8c8ad5 [file] [log] [blame]
/* automatically generated by rust-bindgen */
#![allow(non_snake_case)]
/**
* <div rustbindgen replaces="nsTArray"></div>
*/
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct nsTArray<T> {
pub y: ::std::os::raw::c_uint,
pub _phantom_0: ::std::marker::PhantomData<T>,
}
impl <T> Default for nsTArray<T> {
fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Test {
pub a: nsTArray<::std::os::raw::c_long>,
}
#[test]
fn bindgen_test_layout_Test() {
assert_eq!(::std::mem::size_of::<Test>() , 4usize , concat ! (
"Size of: " , stringify ! ( Test ) ));
assert_eq! (::std::mem::align_of::<Test>() , 4usize , concat ! (
"Alignment of " , stringify ! ( Test ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const Test ) ) . a as * const _ as usize } ,
0usize , concat ! (
"Alignment of field: " , stringify ! ( Test ) , "::" ,
stringify ! ( a ) ));
}
impl Clone for Test {
fn clone(&self) -> Self { *self }
}
impl Default for Test {
fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}