blob: bfd573e0214172756c7fbc552cb59afa776b5466 [file] [log] [blame]
/* automatically generated by rust-bindgen */
#![allow(non_snake_case)]
#[repr(C)]
pub struct __BindgenUnionField<T>(::std::marker::PhantomData<T>);
impl <T> __BindgenUnionField<T> {
#[inline]
pub fn new() -> Self { __BindgenUnionField(::std::marker::PhantomData) }
#[inline]
pub unsafe fn as_ref(&self) -> &T { ::std::mem::transmute(self) }
#[inline]
pub unsafe fn as_mut(&mut self) -> &mut T { ::std::mem::transmute(self) }
}
impl <T> ::std::default::Default for __BindgenUnionField<T> {
#[inline]
fn default() -> Self { Self::new() }
}
impl <T> ::std::clone::Clone for __BindgenUnionField<T> {
#[inline]
fn clone(&self) -> Self { Self::new() }
}
impl <T> ::std::marker::Copy for __BindgenUnionField<T> { }
impl <T> ::std::fmt::Debug for __BindgenUnionField<T> {
fn fmt(&self, fmt: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
fmt.write_str("__BindgenUnionField")
}
}
#[repr(C)]
#[derive(Debug, Default)]
pub struct UnionWithDtor {
pub mFoo: __BindgenUnionField<::std::os::raw::c_int>,
pub mBar: __BindgenUnionField<*mut ::std::os::raw::c_void>,
pub bindgen_union_field: u64,
}
#[test]
fn bindgen_test_layout_UnionWithDtor() {
assert_eq!(::std::mem::size_of::<UnionWithDtor>() , 8usize , concat ! (
"Size of: " , stringify ! ( UnionWithDtor ) ));
assert_eq! (::std::mem::align_of::<UnionWithDtor>() , 8usize , concat ! (
"Alignment of " , stringify ! ( UnionWithDtor ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const UnionWithDtor ) ) . mFoo as * const _ as
usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! ( UnionWithDtor ) , "::"
, stringify ! ( mFoo ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const UnionWithDtor ) ) . mBar as * const _ as
usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! ( UnionWithDtor ) , "::"
, stringify ! ( mBar ) ));
}