mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
style: Update Gecko bindings.
This commit is contained in:
parent
22a6a2c1bb
commit
d6856c0020
3 changed files with 843 additions and 551 deletions
|
@ -15,6 +15,7 @@ use gecko_bindings::structs::mozilla::css::ImageValue;
|
||||||
use gecko_bindings::structs::mozilla::css::URLValue;
|
use gecko_bindings::structs::mozilla::css::URLValue;
|
||||||
use gecko_bindings::structs::mozilla::css::URLValueData;
|
use gecko_bindings::structs::mozilla::css::URLValueData;
|
||||||
use gecko_bindings::structs::mozilla::MallocSizeOf;
|
use gecko_bindings::structs::mozilla::MallocSizeOf;
|
||||||
|
use gecko_bindings::structs::mozilla::OriginFlags;
|
||||||
use gecko_bindings::structs::mozilla::Side;
|
use gecko_bindings::structs::mozilla::Side;
|
||||||
use gecko_bindings::structs::mozilla::UniquePtr;
|
use gecko_bindings::structs::mozilla::UniquePtr;
|
||||||
use gecko_bindings::structs::nsIContent;
|
use gecko_bindings::structs::nsIContent;
|
||||||
|
@ -1956,6 +1957,11 @@ extern "C" {
|
||||||
RawServoStyleSheetContentsBorrowed)
|
RawServoStyleSheetContentsBorrowed)
|
||||||
-> usize;
|
-> usize;
|
||||||
}
|
}
|
||||||
|
extern "C" {
|
||||||
|
pub fn Servo_StyleSheet_GetOrigin(sheet:
|
||||||
|
RawServoStyleSheetContentsBorrowed)
|
||||||
|
-> OriginFlags;
|
||||||
|
}
|
||||||
extern "C" {
|
extern "C" {
|
||||||
pub fn Servo_StyleSet_Init(pres_context: RawGeckoPresContextOwned)
|
pub fn Servo_StyleSet_Init(pres_context: RawGeckoPresContextOwned)
|
||||||
-> RawServoStyleSetOwned;
|
-> RawServoStyleSetOwned;
|
||||||
|
@ -2006,7 +2012,9 @@ extern "C" {
|
||||||
extern "C" {
|
extern "C" {
|
||||||
pub fn Servo_StyleSet_NoteStyleSheetsChanged(set:
|
pub fn Servo_StyleSet_NoteStyleSheetsChanged(set:
|
||||||
RawServoStyleSetBorrowed,
|
RawServoStyleSetBorrowed,
|
||||||
author_style_disabled: bool);
|
author_style_disabled: bool,
|
||||||
|
changed_origins:
|
||||||
|
OriginFlags);
|
||||||
}
|
}
|
||||||
extern "C" {
|
extern "C" {
|
||||||
pub fn Servo_StyleSet_GetKeyframesForName(set: RawServoStyleSetBorrowed,
|
pub fn Servo_StyleSet_GetKeyframesForName(set: RawServoStyleSetBorrowed,
|
||||||
|
|
|
@ -1052,8 +1052,6 @@ pub mod root {
|
||||||
}
|
}
|
||||||
pub type pair_first_type<_T1> = _T1;
|
pub type pair_first_type<_T1> = _T1;
|
||||||
pub type pair_second_type<_T2> = _T2;
|
pub type pair_second_type<_T2> = _T2;
|
||||||
pub type pair__PCCP = u8;
|
|
||||||
pub type pair__PCCFP = u8;
|
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
#[derive(Debug, Copy)]
|
#[derive(Debug, Copy)]
|
||||||
pub struct input_iterator_tag {
|
pub struct input_iterator_tag {
|
||||||
|
@ -8285,6 +8283,51 @@ pub mod root {
|
||||||
PropertyStyleAnimationValuePair ) , "::" , stringify !
|
PropertyStyleAnimationValuePair ) , "::" , stringify !
|
||||||
( mValue ) ));
|
( mValue ) ));
|
||||||
}
|
}
|
||||||
|
pub const OriginFlags_UserAgent: root::mozilla::OriginFlags =
|
||||||
|
OriginFlags(1);
|
||||||
|
pub const OriginFlags_User: root::mozilla::OriginFlags =
|
||||||
|
OriginFlags(2);
|
||||||
|
pub const OriginFlags_Author: root::mozilla::OriginFlags =
|
||||||
|
OriginFlags(4);
|
||||||
|
pub const OriginFlags_All: root::mozilla::OriginFlags =
|
||||||
|
OriginFlags(7);
|
||||||
|
impl ::std::ops::BitOr<root::mozilla::OriginFlags> for
|
||||||
|
root::mozilla::OriginFlags {
|
||||||
|
type
|
||||||
|
Output
|
||||||
|
=
|
||||||
|
Self;
|
||||||
|
#[inline]
|
||||||
|
fn bitor(self, other: Self) -> Self {
|
||||||
|
OriginFlags(self.0 | other.0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
impl ::std::ops::BitOrAssign for root::mozilla::OriginFlags {
|
||||||
|
#[inline]
|
||||||
|
fn bitor_assign(&mut self, rhs: root::mozilla::OriginFlags) {
|
||||||
|
self.0 |= rhs.0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
impl ::std::ops::BitAnd<root::mozilla::OriginFlags> for
|
||||||
|
root::mozilla::OriginFlags {
|
||||||
|
type
|
||||||
|
Output
|
||||||
|
=
|
||||||
|
Self;
|
||||||
|
#[inline]
|
||||||
|
fn bitand(self, other: Self) -> Self {
|
||||||
|
OriginFlags(self.0 & other.0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
impl ::std::ops::BitAndAssign for root::mozilla::OriginFlags {
|
||||||
|
#[inline]
|
||||||
|
fn bitand_assign(&mut self, rhs: root::mozilla::OriginFlags) {
|
||||||
|
self.0 &= rhs.0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#[repr(C)]
|
||||||
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||||
|
pub struct OriginFlags(pub u8);
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_DefaultDelete_open0_RawServoStyleSet_close0_instantiation() {
|
fn __bindgen_test_layout_DefaultDelete_open0_RawServoStyleSet_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::mozilla::DefaultDelete>() ,
|
assert_eq!(::std::mem::size_of::<root::mozilla::DefaultDelete>() ,
|
||||||
|
@ -16919,6 +16962,7 @@ pub mod root {
|
||||||
pub mPageUnloadingEventTimeStamp: root::mozilla::TimeStamp,
|
pub mPageUnloadingEventTimeStamp: root::mozilla::TimeStamp,
|
||||||
pub mDocGroup: root::RefPtr<root::mozilla::dom::DocGroup>,
|
pub mDocGroup: root::RefPtr<root::mozilla::dom::DocGroup>,
|
||||||
pub mTrackingScripts: [u64; 6usize],
|
pub mTrackingScripts: [u64; 6usize],
|
||||||
|
pub mBufferedCSPViolations: root::nsTArray<root::nsCOMPtr<root::nsIRunnable>>,
|
||||||
}
|
}
|
||||||
pub type nsIDocument_GlobalObject = root::mozilla::dom::GlobalObject;
|
pub type nsIDocument_GlobalObject = root::mozilla::dom::GlobalObject;
|
||||||
pub type nsIDocument_Encoding = root::mozilla::Encoding;
|
pub type nsIDocument_Encoding = root::mozilla::Encoding;
|
||||||
|
@ -17213,7 +17257,7 @@ pub mod root {
|
||||||
pub const nsIDocument_kSegmentSize: usize = 128;
|
pub const nsIDocument_kSegmentSize: usize = 128;
|
||||||
#[test]
|
#[test]
|
||||||
fn bindgen_test_layout_nsIDocument() {
|
fn bindgen_test_layout_nsIDocument() {
|
||||||
assert_eq!(::std::mem::size_of::<nsIDocument>() , 880usize , concat !
|
assert_eq!(::std::mem::size_of::<nsIDocument>() , 888usize , concat !
|
||||||
( "Size of: " , stringify ! ( nsIDocument ) ));
|
( "Size of: " , stringify ! ( nsIDocument ) ));
|
||||||
assert_eq! (::std::mem::align_of::<nsIDocument>() , 8usize , concat !
|
assert_eq! (::std::mem::align_of::<nsIDocument>() , 8usize , concat !
|
||||||
( "Alignment of " , stringify ! ( nsIDocument ) ));
|
( "Alignment of " , stringify ! ( nsIDocument ) ));
|
||||||
|
@ -19082,7 +19126,7 @@ pub mod root {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn mIsScopedStyleEnabled(&self) -> ::std::os::raw::c_uint {
|
pub fn mBufferingCSPViolations(&self) -> bool {
|
||||||
let mut unit_field_val: u64 =
|
let mut unit_field_val: u64 =
|
||||||
unsafe { ::std::mem::uninitialized() };
|
unsafe { ::std::mem::uninitialized() };
|
||||||
unsafe {
|
unsafe {
|
||||||
|
@ -19092,15 +19136,14 @@ pub mod root {
|
||||||
*mut u64 as *mut u8,
|
*mut u64 as *mut u8,
|
||||||
::std::mem::size_of::<u64>())
|
::std::mem::size_of::<u64>())
|
||||||
};
|
};
|
||||||
let mask = 1688849860263936u64 as u64;
|
let mask = 562949953421312u64 as u64;
|
||||||
let val = (unit_field_val & mask) >> 49usize;
|
let val = (unit_field_val & mask) >> 49usize;
|
||||||
unsafe { ::std::mem::transmute(val as u32) }
|
unsafe { ::std::mem::transmute(val as u8) }
|
||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn set_mIsScopedStyleEnabled(&mut self,
|
pub fn set_mBufferingCSPViolations(&mut self, val: bool) {
|
||||||
val: ::std::os::raw::c_uint) {
|
let mask = 562949953421312u64 as u64;
|
||||||
let mask = 1688849860263936u64 as u64;
|
let val = val as u8 as u64;
|
||||||
let val = val as u32 as u64;
|
|
||||||
let mut unit_field_val: u64 =
|
let mut unit_field_val: u64 =
|
||||||
unsafe { ::std::mem::uninitialized() };
|
unsafe { ::std::mem::uninitialized() };
|
||||||
unsafe {
|
unsafe {
|
||||||
|
@ -19121,6 +19164,45 @@ pub mod root {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
|
pub fn mIsScopedStyleEnabled(&self) -> ::std::os::raw::c_uint {
|
||||||
|
let mut unit_field_val: u64 =
|
||||||
|
unsafe { ::std::mem::uninitialized() };
|
||||||
|
unsafe {
|
||||||
|
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _
|
||||||
|
as *const u8,
|
||||||
|
&mut unit_field_val as
|
||||||
|
*mut u64 as *mut u8,
|
||||||
|
::std::mem::size_of::<u64>())
|
||||||
|
};
|
||||||
|
let mask = 3377699720527872u64 as u64;
|
||||||
|
let val = (unit_field_val & mask) >> 50usize;
|
||||||
|
unsafe { ::std::mem::transmute(val as u32) }
|
||||||
|
}
|
||||||
|
#[inline]
|
||||||
|
pub fn set_mIsScopedStyleEnabled(&mut self,
|
||||||
|
val: ::std::os::raw::c_uint) {
|
||||||
|
let mask = 3377699720527872u64 as u64;
|
||||||
|
let val = val as u32 as u64;
|
||||||
|
let mut unit_field_val: u64 =
|
||||||
|
unsafe { ::std::mem::uninitialized() };
|
||||||
|
unsafe {
|
||||||
|
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _
|
||||||
|
as *const u8,
|
||||||
|
&mut unit_field_val as
|
||||||
|
*mut u64 as *mut u8,
|
||||||
|
::std::mem::size_of::<u64>())
|
||||||
|
};
|
||||||
|
unit_field_val &= !mask;
|
||||||
|
unit_field_val |= (val << 50usize) & mask;
|
||||||
|
unsafe {
|
||||||
|
::std::ptr::copy_nonoverlapping(&unit_field_val as *const _ as
|
||||||
|
*const u8,
|
||||||
|
&mut self._bitfield_1 as
|
||||||
|
*mut _ as *mut u8,
|
||||||
|
::std::mem::size_of::<u64>());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#[inline]
|
||||||
pub fn new_bitfield_1(mBidiEnabled: bool, mMathMLEnabled: bool,
|
pub fn new_bitfield_1(mBidiEnabled: bool, mMathMLEnabled: bool,
|
||||||
mIsInitialDocumentInWindow: bool,
|
mIsInitialDocumentInWindow: bool,
|
||||||
mIgnoreDocGroupMismatches: bool,
|
mIgnoreDocGroupMismatches: bool,
|
||||||
|
@ -19165,6 +19247,7 @@ pub mod root {
|
||||||
mIsContentDocument: bool,
|
mIsContentDocument: bool,
|
||||||
mMightHaveStaleServoData: bool,
|
mMightHaveStaleServoData: bool,
|
||||||
mDidCallBeginLoad: bool,
|
mDidCallBeginLoad: bool,
|
||||||
|
mBufferingCSPViolations: bool,
|
||||||
mIsScopedStyleEnabled: ::std::os::raw::c_uint)
|
mIsScopedStyleEnabled: ::std::os::raw::c_uint)
|
||||||
-> u64 {
|
-> u64 {
|
||||||
({
|
({
|
||||||
|
@ -19217,6 +19300,7 @@ pub mod root {
|
||||||
({
|
({
|
||||||
({
|
({
|
||||||
({
|
({
|
||||||
|
({
|
||||||
0
|
0
|
||||||
}
|
}
|
||||||
|
|
|
|
||||||
|
@ -19699,7 +19783,8 @@ pub mod root {
|
||||||
(68719476736u64
|
(68719476736u64
|
||||||
as
|
as
|
||||||
u64))
|
u64))
|
||||||
} |
|
}
|
||||||
|
|
|
||||||
((mDidDocumentOpen
|
((mDidDocumentOpen
|
||||||
as
|
as
|
||||||
u8
|
u8
|
||||||
|
@ -19725,7 +19810,8 @@ pub mod root {
|
||||||
u64))
|
u64))
|
||||||
} |
|
} |
|
||||||
((mFontFaceSetDirty
|
((mFontFaceSetDirty
|
||||||
as u8
|
as
|
||||||
|
u8
|
||||||
as
|
as
|
||||||
u64)
|
u64)
|
||||||
<<
|
<<
|
||||||
|
@ -19736,39 +19822,48 @@ pub mod root {
|
||||||
u64))
|
u64))
|
||||||
} |
|
} |
|
||||||
((mGetUserFontSetCalled
|
((mGetUserFontSetCalled
|
||||||
as u8 as
|
as u8
|
||||||
u64) <<
|
as
|
||||||
40usize) &
|
u64)
|
||||||
|
<<
|
||||||
|
40usize)
|
||||||
|
&
|
||||||
(1099511627776u64
|
(1099511627776u64
|
||||||
as
|
as
|
||||||
u64))
|
u64))
|
||||||
} |
|
} |
|
||||||
((mPostedFlushUserFontSet
|
((mPostedFlushUserFontSet
|
||||||
as u8 as u64)
|
as u8 as
|
||||||
<< 41usize) &
|
u64) <<
|
||||||
|
41usize) &
|
||||||
(2199023255552u64
|
(2199023255552u64
|
||||||
as u64))
|
as
|
||||||
} |
|
|
||||||
((mDidFireDOMContentLoaded
|
|
||||||
as u8 as u64) <<
|
|
||||||
42usize) &
|
|
||||||
(4398046511104u64 as
|
|
||||||
u64))
|
u64))
|
||||||
} |
|
} |
|
||||||
((mHasScrollLinkedEffect as u8
|
((mDidFireDOMContentLoaded
|
||||||
as u64) << 43usize) &
|
as u8 as u64)
|
||||||
(8796093022208u64 as u64))
|
<< 42usize) &
|
||||||
|
(4398046511104u64
|
||||||
|
as u64))
|
||||||
} |
|
} |
|
||||||
((mFrameRequestCallbacksScheduled as
|
((mHasScrollLinkedEffect
|
||||||
u8 as u64) << 44usize) &
|
as u8 as u64) <<
|
||||||
|
43usize) &
|
||||||
|
(8796093022208u64 as
|
||||||
|
u64))
|
||||||
|
} |
|
||||||
|
((mFrameRequestCallbacksScheduled
|
||||||
|
as u8 as u64) << 44usize)
|
||||||
|
&
|
||||||
(17592186044416u64 as u64))
|
(17592186044416u64 as u64))
|
||||||
} |
|
} |
|
||||||
((mIsTopLevelContentDocument as u8 as
|
((mIsTopLevelContentDocument as u8
|
||||||
u64) << 45usize) &
|
as u64) << 45usize) &
|
||||||
(35184372088832u64 as u64))
|
(35184372088832u64 as u64))
|
||||||
} |
|
} |
|
||||||
((mIsContentDocument as u8 as u64) << 46usize)
|
((mIsContentDocument as u8 as u64) <<
|
||||||
& (70368744177664u64 as u64))
|
46usize) &
|
||||||
|
(70368744177664u64 as u64))
|
||||||
} |
|
} |
|
||||||
((mMightHaveStaleServoData as u8 as u64) <<
|
((mMightHaveStaleServoData as u8 as u64) <<
|
||||||
47usize) & (140737488355328u64 as u64))
|
47usize) & (140737488355328u64 as u64))
|
||||||
|
@ -19776,8 +19871,11 @@ pub mod root {
|
||||||
((mDidCallBeginLoad as u8 as u64) << 48usize) &
|
((mDidCallBeginLoad as u8 as u64) << 48usize) &
|
||||||
(281474976710656u64 as u64))
|
(281474976710656u64 as u64))
|
||||||
} |
|
} |
|
||||||
((mIsScopedStyleEnabled as u32 as u64) << 49usize) &
|
((mBufferingCSPViolations as u8 as u64) << 49usize) &
|
||||||
(1688849860263936u64 as u64))
|
(562949953421312u64 as u64))
|
||||||
|
} |
|
||||||
|
((mIsScopedStyleEnabled as u32 as u64) << 50usize) &
|
||||||
|
(3377699720527872u64 as u64))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
|
@ -25014,57 +25112,57 @@ pub mod root {
|
||||||
pub struct nsRange {
|
pub struct nsRange {
|
||||||
_unused: [u8; 0],
|
_unused: [u8; 0],
|
||||||
}
|
}
|
||||||
pub const NODE_HAS_LISTENERMANAGER: root::_bindgen_ty_72 =
|
pub const NODE_HAS_LISTENERMANAGER: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_LISTENERMANAGER;
|
_bindgen_ty_84::NODE_HAS_LISTENERMANAGER;
|
||||||
pub const NODE_HAS_PROPERTIES: root::_bindgen_ty_72 =
|
pub const NODE_HAS_PROPERTIES: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_PROPERTIES;
|
_bindgen_ty_84::NODE_HAS_PROPERTIES;
|
||||||
pub const NODE_IS_ANONYMOUS_ROOT: root::_bindgen_ty_72 =
|
pub const NODE_IS_ANONYMOUS_ROOT: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_IS_ANONYMOUS_ROOT;
|
_bindgen_ty_84::NODE_IS_ANONYMOUS_ROOT;
|
||||||
pub const NODE_IS_IN_NATIVE_ANONYMOUS_SUBTREE: root::_bindgen_ty_72 =
|
pub const NODE_IS_IN_NATIVE_ANONYMOUS_SUBTREE: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_IS_IN_NATIVE_ANONYMOUS_SUBTREE;
|
_bindgen_ty_84::NODE_IS_IN_NATIVE_ANONYMOUS_SUBTREE;
|
||||||
pub const NODE_IS_NATIVE_ANONYMOUS_ROOT: root::_bindgen_ty_72 =
|
pub const NODE_IS_NATIVE_ANONYMOUS_ROOT: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_IS_NATIVE_ANONYMOUS_ROOT;
|
_bindgen_ty_84::NODE_IS_NATIVE_ANONYMOUS_ROOT;
|
||||||
pub const NODE_FORCE_XBL_BINDINGS: root::_bindgen_ty_72 =
|
pub const NODE_FORCE_XBL_BINDINGS: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_FORCE_XBL_BINDINGS;
|
_bindgen_ty_84::NODE_FORCE_XBL_BINDINGS;
|
||||||
pub const NODE_MAY_BE_IN_BINDING_MNGR: root::_bindgen_ty_72 =
|
pub const NODE_MAY_BE_IN_BINDING_MNGR: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_MAY_BE_IN_BINDING_MNGR;
|
_bindgen_ty_84::NODE_MAY_BE_IN_BINDING_MNGR;
|
||||||
pub const NODE_IS_EDITABLE: root::_bindgen_ty_72 =
|
pub const NODE_IS_EDITABLE: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_IS_EDITABLE;
|
_bindgen_ty_84::NODE_IS_EDITABLE;
|
||||||
pub const NODE_IS_NATIVE_ANONYMOUS: root::_bindgen_ty_72 =
|
pub const NODE_IS_NATIVE_ANONYMOUS: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_IS_NATIVE_ANONYMOUS;
|
_bindgen_ty_84::NODE_IS_NATIVE_ANONYMOUS;
|
||||||
pub const NODE_IS_IN_SHADOW_TREE: root::_bindgen_ty_72 =
|
pub const NODE_IS_IN_SHADOW_TREE: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_IS_IN_SHADOW_TREE;
|
_bindgen_ty_84::NODE_IS_IN_SHADOW_TREE;
|
||||||
pub const NODE_HAS_EMPTY_SELECTOR: root::_bindgen_ty_72 =
|
pub const NODE_HAS_EMPTY_SELECTOR: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_EMPTY_SELECTOR;
|
_bindgen_ty_84::NODE_HAS_EMPTY_SELECTOR;
|
||||||
pub const NODE_HAS_SLOW_SELECTOR: root::_bindgen_ty_72 =
|
pub const NODE_HAS_SLOW_SELECTOR: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_SLOW_SELECTOR;
|
_bindgen_ty_84::NODE_HAS_SLOW_SELECTOR;
|
||||||
pub const NODE_HAS_EDGE_CHILD_SELECTOR: root::_bindgen_ty_72 =
|
pub const NODE_HAS_EDGE_CHILD_SELECTOR: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_EDGE_CHILD_SELECTOR;
|
_bindgen_ty_84::NODE_HAS_EDGE_CHILD_SELECTOR;
|
||||||
pub const NODE_HAS_SLOW_SELECTOR_LATER_SIBLINGS: root::_bindgen_ty_72 =
|
pub const NODE_HAS_SLOW_SELECTOR_LATER_SIBLINGS: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_SLOW_SELECTOR_LATER_SIBLINGS;
|
_bindgen_ty_84::NODE_HAS_SLOW_SELECTOR_LATER_SIBLINGS;
|
||||||
pub const NODE_ALL_SELECTOR_FLAGS: root::_bindgen_ty_72 =
|
pub const NODE_ALL_SELECTOR_FLAGS: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_ALL_SELECTOR_FLAGS;
|
_bindgen_ty_84::NODE_ALL_SELECTOR_FLAGS;
|
||||||
pub const NODE_NEEDS_FRAME: root::_bindgen_ty_72 =
|
pub const NODE_NEEDS_FRAME: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_NEEDS_FRAME;
|
_bindgen_ty_84::NODE_NEEDS_FRAME;
|
||||||
pub const NODE_DESCENDANTS_NEED_FRAMES: root::_bindgen_ty_72 =
|
pub const NODE_DESCENDANTS_NEED_FRAMES: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_DESCENDANTS_NEED_FRAMES;
|
_bindgen_ty_84::NODE_DESCENDANTS_NEED_FRAMES;
|
||||||
pub const NODE_HAS_ACCESSKEY: root::_bindgen_ty_72 =
|
pub const NODE_HAS_ACCESSKEY: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_ACCESSKEY;
|
_bindgen_ty_84::NODE_HAS_ACCESSKEY;
|
||||||
pub const NODE_HAS_DIRECTION_RTL: root::_bindgen_ty_72 =
|
pub const NODE_HAS_DIRECTION_RTL: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_DIRECTION_RTL;
|
_bindgen_ty_84::NODE_HAS_DIRECTION_RTL;
|
||||||
pub const NODE_HAS_DIRECTION_LTR: root::_bindgen_ty_72 =
|
pub const NODE_HAS_DIRECTION_LTR: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_DIRECTION_LTR;
|
_bindgen_ty_84::NODE_HAS_DIRECTION_LTR;
|
||||||
pub const NODE_ALL_DIRECTION_FLAGS: root::_bindgen_ty_72 =
|
pub const NODE_ALL_DIRECTION_FLAGS: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_ALL_DIRECTION_FLAGS;
|
_bindgen_ty_84::NODE_ALL_DIRECTION_FLAGS;
|
||||||
pub const NODE_CHROME_ONLY_ACCESS: root::_bindgen_ty_72 =
|
pub const NODE_CHROME_ONLY_ACCESS: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_CHROME_ONLY_ACCESS;
|
_bindgen_ty_84::NODE_CHROME_ONLY_ACCESS;
|
||||||
pub const NODE_IS_ROOT_OF_CHROME_ONLY_ACCESS: root::_bindgen_ty_72 =
|
pub const NODE_IS_ROOT_OF_CHROME_ONLY_ACCESS: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_IS_ROOT_OF_CHROME_ONLY_ACCESS;
|
_bindgen_ty_84::NODE_IS_ROOT_OF_CHROME_ONLY_ACCESS;
|
||||||
pub const NODE_TYPE_SPECIFIC_BITS_OFFSET: root::_bindgen_ty_72 =
|
pub const NODE_TYPE_SPECIFIC_BITS_OFFSET: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_TYPE_SPECIFIC_BITS_OFFSET;
|
_bindgen_ty_84::NODE_TYPE_SPECIFIC_BITS_OFFSET;
|
||||||
#[repr(u32)]
|
#[repr(u32)]
|
||||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||||
pub enum _bindgen_ty_72 {
|
pub enum _bindgen_ty_84 {
|
||||||
NODE_HAS_LISTENERMANAGER = 4,
|
NODE_HAS_LISTENERMANAGER = 4,
|
||||||
NODE_HAS_PROPERTIES = 8,
|
NODE_HAS_PROPERTIES = 8,
|
||||||
NODE_IS_ANONYMOUS_ROOT = 16,
|
NODE_IS_ANONYMOUS_ROOT = 16,
|
||||||
|
@ -32642,46 +32740,46 @@ pub mod root {
|
||||||
assert_eq! (::std::mem::align_of::<nsISMILAttr>() , 8usize , concat !
|
assert_eq! (::std::mem::align_of::<nsISMILAttr>() , 8usize , concat !
|
||||||
( "Alignment of " , stringify ! ( nsISMILAttr ) ));
|
( "Alignment of " , stringify ! ( nsISMILAttr ) ));
|
||||||
}
|
}
|
||||||
pub const ELEMENT_SHARED_RESTYLE_BIT_1: root::_bindgen_ty_74 =
|
pub const ELEMENT_SHARED_RESTYLE_BIT_1: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_1;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_1;
|
||||||
pub const ELEMENT_SHARED_RESTYLE_BIT_2: root::_bindgen_ty_74 =
|
pub const ELEMENT_SHARED_RESTYLE_BIT_2: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_2;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_2;
|
||||||
pub const ELEMENT_SHARED_RESTYLE_BIT_3: root::_bindgen_ty_74 =
|
pub const ELEMENT_SHARED_RESTYLE_BIT_3: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_3;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_3;
|
||||||
pub const ELEMENT_SHARED_RESTYLE_BIT_4: root::_bindgen_ty_74 =
|
pub const ELEMENT_SHARED_RESTYLE_BIT_4: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_4;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_4;
|
||||||
pub const ELEMENT_HAS_DIRTY_DESCENDANTS_FOR_SERVO: root::_bindgen_ty_74 =
|
pub const ELEMENT_HAS_DIRTY_DESCENDANTS_FOR_SERVO: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_1;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_1;
|
||||||
pub const ELEMENT_HAS_ANIMATION_ONLY_DIRTY_DESCENDANTS_FOR_SERVO:
|
pub const ELEMENT_HAS_ANIMATION_ONLY_DIRTY_DESCENDANTS_FOR_SERVO:
|
||||||
root::_bindgen_ty_74 =
|
root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_2;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_2;
|
||||||
pub const ELEMENT_HAS_SNAPSHOT: root::_bindgen_ty_74 =
|
pub const ELEMENT_HAS_SNAPSHOT: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_3;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_3;
|
||||||
pub const ELEMENT_HANDLED_SNAPSHOT: root::_bindgen_ty_74 =
|
pub const ELEMENT_HANDLED_SNAPSHOT: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_4;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_4;
|
||||||
pub const ELEMENT_HAS_PENDING_RESTYLE: root::_bindgen_ty_74 =
|
pub const ELEMENT_HAS_PENDING_RESTYLE: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_1;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_1;
|
||||||
pub const ELEMENT_IS_POTENTIAL_RESTYLE_ROOT: root::_bindgen_ty_74 =
|
pub const ELEMENT_IS_POTENTIAL_RESTYLE_ROOT: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_2;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_2;
|
||||||
pub const ELEMENT_HAS_PENDING_ANIMATION_ONLY_RESTYLE: root::_bindgen_ty_74
|
pub const ELEMENT_HAS_PENDING_ANIMATION_ONLY_RESTYLE: root::_bindgen_ty_86
|
||||||
=
|
=
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_3;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_3;
|
||||||
pub const ELEMENT_IS_POTENTIAL_ANIMATION_ONLY_RESTYLE_ROOT:
|
pub const ELEMENT_IS_POTENTIAL_ANIMATION_ONLY_RESTYLE_ROOT:
|
||||||
root::_bindgen_ty_74 =
|
root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_4;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_4;
|
||||||
pub const ELEMENT_IS_CONDITIONAL_RESTYLE_ANCESTOR: root::_bindgen_ty_74 =
|
pub const ELEMENT_IS_CONDITIONAL_RESTYLE_ANCESTOR: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_IS_CONDITIONAL_RESTYLE_ANCESTOR;
|
_bindgen_ty_86::ELEMENT_IS_CONDITIONAL_RESTYLE_ANCESTOR;
|
||||||
pub const ELEMENT_PENDING_RESTYLE_FLAGS: root::_bindgen_ty_74 =
|
pub const ELEMENT_PENDING_RESTYLE_FLAGS: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_PENDING_RESTYLE_FLAGS;
|
_bindgen_ty_86::ELEMENT_PENDING_RESTYLE_FLAGS;
|
||||||
pub const ELEMENT_POTENTIAL_RESTYLE_ROOT_FLAGS: root::_bindgen_ty_74 =
|
pub const ELEMENT_POTENTIAL_RESTYLE_ROOT_FLAGS: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_POTENTIAL_RESTYLE_ROOT_FLAGS;
|
_bindgen_ty_86::ELEMENT_POTENTIAL_RESTYLE_ROOT_FLAGS;
|
||||||
pub const ELEMENT_ALL_RESTYLE_FLAGS: root::_bindgen_ty_74 =
|
pub const ELEMENT_ALL_RESTYLE_FLAGS: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_ALL_RESTYLE_FLAGS;
|
_bindgen_ty_86::ELEMENT_ALL_RESTYLE_FLAGS;
|
||||||
pub const ELEMENT_TYPE_SPECIFIC_BITS_OFFSET: root::_bindgen_ty_74 =
|
pub const ELEMENT_TYPE_SPECIFIC_BITS_OFFSET: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_TYPE_SPECIFIC_BITS_OFFSET;
|
_bindgen_ty_86::ELEMENT_TYPE_SPECIFIC_BITS_OFFSET;
|
||||||
#[repr(u32)]
|
#[repr(u32)]
|
||||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||||
pub enum _bindgen_ty_74 {
|
pub enum _bindgen_ty_86 {
|
||||||
ELEMENT_SHARED_RESTYLE_BIT_1 = 8388608,
|
ELEMENT_SHARED_RESTYLE_BIT_1 = 8388608,
|
||||||
ELEMENT_SHARED_RESTYLE_BIT_2 = 16777216,
|
ELEMENT_SHARED_RESTYLE_BIT_2 = 16777216,
|
||||||
ELEMENT_SHARED_RESTYLE_BIT_3 = 33554432,
|
ELEMENT_SHARED_RESTYLE_BIT_3 = 33554432,
|
||||||
|
@ -33557,7 +33655,7 @@ pub mod root {
|
||||||
root::nsTArray<root::mozilla::gfx::FontVariation> ) ));
|
root::nsTArray<root::mozilla::gfx::FontVariation> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_200542_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_226841_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsCSSSelector>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsCSSSelector>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -33913,7 +34011,7 @@ pub mod root {
|
||||||
root::mozilla::binding_danger::TErrorResult ) ));
|
root::mozilla::binding_danger::TErrorResult ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_202359_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_228658_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -34074,7 +34172,7 @@ pub mod root {
|
||||||
root::JS::DeletePolicy ) ));
|
root::JS::DeletePolicy ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_iterator_open0_input_iterator_tag_UniquePtr_open1_JSErrorNotes_Note_DeletePolicy_open2_JSErrorNotes_Note_close2_close1_long__bindgen_ty_id_207978__bindgen_ty_id_207985_close0_instantiation() {
|
fn __bindgen_test_layout_iterator_open0_input_iterator_tag_UniquePtr_open1_JSErrorNotes_Note_DeletePolicy_open2_JSErrorNotes_Note_close2_close1_long__bindgen_ty_id_234269__bindgen_ty_id_234276_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::std::iterator>() , 1usize ,
|
assert_eq!(::std::mem::size_of::<root::std::iterator>() , 1usize ,
|
||||||
concat ! (
|
concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -34239,6 +34337,28 @@ pub mod root {
|
||||||
root::nsCOMPtr<root::nsIDocument> ) ));
|
root::nsCOMPtr<root::nsIDocument> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
|
fn __bindgen_test_layout_nsTArray_open0_nsCOMPtr_open1_nsIRunnable_close1_close0_instantiation() {
|
||||||
|
assert_eq!(::std::mem::size_of::<root::nsTArray<root::nsCOMPtr<root::nsIRunnable>>>()
|
||||||
|
, 8usize , concat ! (
|
||||||
|
"Size of template specialization: " , stringify ! (
|
||||||
|
root::nsTArray<root::nsCOMPtr<root::nsIRunnable>> ) ));
|
||||||
|
assert_eq!(::std::mem::align_of::<root::nsTArray<root::nsCOMPtr<root::nsIRunnable>>>()
|
||||||
|
, 8usize , concat ! (
|
||||||
|
"Alignment of template specialization: " , stringify ! (
|
||||||
|
root::nsTArray<root::nsCOMPtr<root::nsIRunnable>> ) ));
|
||||||
|
}
|
||||||
|
#[test]
|
||||||
|
fn __bindgen_test_layout_nsCOMPtr_open0_nsIRunnable_close0_instantiation() {
|
||||||
|
assert_eq!(::std::mem::size_of::<root::nsCOMPtr<root::nsIRunnable>>()
|
||||||
|
, 8usize , concat ! (
|
||||||
|
"Size of template specialization: " , stringify ! (
|
||||||
|
root::nsCOMPtr<root::nsIRunnable> ) ));
|
||||||
|
assert_eq!(::std::mem::align_of::<root::nsCOMPtr<root::nsIRunnable>>()
|
||||||
|
, 8usize , concat ! (
|
||||||
|
"Alignment of template specialization: " , stringify ! (
|
||||||
|
root::nsCOMPtr<root::nsIRunnable> ) ));
|
||||||
|
}
|
||||||
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0_RefPtr_open1_AnonymousContent_close1_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0_RefPtr_open1_AnonymousContent_close1_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<root::RefPtr<root::mozilla::dom::AnonymousContent>>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<root::RefPtr<root::mozilla::dom::AnonymousContent>>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
|
@ -34300,7 +34420,7 @@ pub mod root {
|
||||||
root::RefPtr<root::mozilla::StyleSheet> ) ));
|
root::RefPtr<root::mozilla::StyleSheet> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_210463_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_236754_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::dom::Element>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::dom::Element>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -34368,7 +34488,7 @@ pub mod root {
|
||||||
root::nsCOMPtr<root::nsIObserver> ) ));
|
root::nsCOMPtr<root::nsIObserver> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_210765_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_237056_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::dom::Element>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::dom::Element>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -34480,7 +34600,7 @@ pub mod root {
|
||||||
root::RefPtr<root::mozilla::URLExtraData> ) ));
|
root::RefPtr<root::mozilla::URLExtraData> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_NotNull_open0__bindgen_ty_id_211307_close0_instantiation() {
|
fn __bindgen_test_layout_NotNull_open0__bindgen_ty_id_237598_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::mozilla::NotNull<*const root::mozilla::Encoding>>()
|
assert_eq!(::std::mem::size_of::<root::mozilla::NotNull<*const root::mozilla::Encoding>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -34805,6 +34925,28 @@ pub mod root {
|
||||||
root::RefPtr<root::mozilla::dom::DocGroup> ) ));
|
root::RefPtr<root::mozilla::dom::DocGroup> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
|
fn __bindgen_test_layout_nsTArray_open0_nsCOMPtr_open1_nsIRunnable_close1_close0_instantiation_1() {
|
||||||
|
assert_eq!(::std::mem::size_of::<root::nsTArray<root::nsCOMPtr<root::nsIRunnable>>>()
|
||||||
|
, 8usize , concat ! (
|
||||||
|
"Size of template specialization: " , stringify ! (
|
||||||
|
root::nsTArray<root::nsCOMPtr<root::nsIRunnable>> ) ));
|
||||||
|
assert_eq!(::std::mem::align_of::<root::nsTArray<root::nsCOMPtr<root::nsIRunnable>>>()
|
||||||
|
, 8usize , concat ! (
|
||||||
|
"Alignment of template specialization: " , stringify ! (
|
||||||
|
root::nsTArray<root::nsCOMPtr<root::nsIRunnable>> ) ));
|
||||||
|
}
|
||||||
|
#[test]
|
||||||
|
fn __bindgen_test_layout_nsCOMPtr_open0_nsIRunnable_close0_instantiation_1() {
|
||||||
|
assert_eq!(::std::mem::size_of::<root::nsCOMPtr<root::nsIRunnable>>()
|
||||||
|
, 8usize , concat ! (
|
||||||
|
"Size of template specialization: " , stringify ! (
|
||||||
|
root::nsCOMPtr<root::nsIRunnable> ) ));
|
||||||
|
assert_eq!(::std::mem::align_of::<root::nsCOMPtr<root::nsIRunnable>>()
|
||||||
|
, 8usize , concat ! (
|
||||||
|
"Alignment of template specialization: " , stringify ! (
|
||||||
|
root::nsCOMPtr<root::nsIRunnable> ) ));
|
||||||
|
}
|
||||||
|
#[test]
|
||||||
fn __bindgen_test_layout_RefPtr_open0_CSSRuleListImpl_close0_instantiation() {
|
fn __bindgen_test_layout_RefPtr_open0_CSSRuleListImpl_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::RefPtr<root::CSSRuleListImpl>>()
|
assert_eq!(::std::mem::size_of::<root::RefPtr<root::CSSRuleListImpl>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
|
@ -34862,7 +35004,7 @@ pub mod root {
|
||||||
root::RefPtr<root::mozilla::StyleSheet> ) ));
|
root::RefPtr<root::mozilla::StyleSheet> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_211722_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_238019_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -34952,7 +35094,7 @@ pub mod root {
|
||||||
) ));
|
) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_212121_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_238418_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35053,7 +35195,7 @@ pub mod root {
|
||||||
root::nsTArray<::nsstring::nsStringRepr> ) ));
|
root::nsTArray<::nsstring::nsStringRepr> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_213085_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_239383_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35142,7 +35284,7 @@ pub mod root {
|
||||||
root::RefPtr<root::nsCSSFontFaceRule> ) ));
|
root::RefPtr<root::nsCSSFontFaceRule> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_213390_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_239688_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35153,7 +35295,7 @@ pub mod root {
|
||||||
root::nsTArray<*mut root::nsIContent> ) ));
|
root::nsTArray<*mut root::nsIContent> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_213395_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_239693_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35210,7 +35352,7 @@ pub mod root {
|
||||||
root::RefPtr<root::mozilla::CSSStyleSheet> ) ));
|
root::RefPtr<root::mozilla::CSSStyleSheet> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_213886_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_240184_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35858,7 +36000,7 @@ pub mod root {
|
||||||
root::nsCOMPtr<root::nsIWeakReference> ) ));
|
root::nsCOMPtr<root::nsIWeakReference> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_216747_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_243035_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut ::std::os::raw::c_void>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut ::std::os::raw::c_void>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35937,7 +36079,7 @@ pub mod root {
|
||||||
root::mozilla::DefaultDelete ) ));
|
root::mozilla::DefaultDelete ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_223009_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_249305_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::dom::AudioContext>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::dom::AudioContext>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35970,7 +36112,7 @@ pub mod root {
|
||||||
root::RefPtr<root::mozilla::dom::CallbackObject> ) ));
|
root::RefPtr<root::mozilla::dom::CallbackObject> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_Heap_open0__bindgen_ty_id_224170_close0_instantiation() {
|
fn __bindgen_test_layout_Heap_open0__bindgen_ty_id_250466_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::JS::Heap<*mut root::JSObject>>()
|
assert_eq!(::std::mem::size_of::<root::JS::Heap<*mut root::JSObject>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35981,7 +36123,7 @@ pub mod root {
|
||||||
root::JS::Heap<*mut root::JSObject> ) ));
|
root::JS::Heap<*mut root::JSObject> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_Heap_open0__bindgen_ty_id_224174_close0_instantiation() {
|
fn __bindgen_test_layout_Heap_open0__bindgen_ty_id_250470_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::JS::Heap<*mut root::JSObject>>()
|
assert_eq!(::std::mem::size_of::<root::JS::Heap<*mut root::JSObject>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -36003,7 +36145,7 @@ pub mod root {
|
||||||
root::nsCOMPtr<root::nsIGlobalObject> ) ));
|
root::nsCOMPtr<root::nsIGlobalObject> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_TenuredHeap_open0__bindgen_ty_id_224181_close0_instantiation() {
|
fn __bindgen_test_layout_TenuredHeap_open0__bindgen_ty_id_250477_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::JS::TenuredHeap>() , 8usize ,
|
assert_eq!(::std::mem::size_of::<root::JS::TenuredHeap>() , 8usize ,
|
||||||
concat ! (
|
concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -36036,7 +36178,7 @@ pub mod root {
|
||||||
root::nsCOMPtr<root::nsISupports> ) ));
|
root::nsCOMPtr<root::nsISupports> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsCOMPtr_open0_nsIRunnable_close0_instantiation() {
|
fn __bindgen_test_layout_nsCOMPtr_open0_nsIRunnable_close0_instantiation_2() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsCOMPtr<root::nsIRunnable>>()
|
assert_eq!(::std::mem::size_of::<root::nsCOMPtr<root::nsIRunnable>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -36047,7 +36189,7 @@ pub mod root {
|
||||||
root::nsCOMPtr<root::nsIRunnable> ) ));
|
root::nsCOMPtr<root::nsIRunnable> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0_nsCOMPtr_open1_nsIRunnable_close1_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0_nsCOMPtr_open1_nsIRunnable_close1_close0_instantiation_2() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<root::nsCOMPtr<root::nsIRunnable>>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<root::nsCOMPtr<root::nsIRunnable>>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -36058,7 +36200,7 @@ pub mod root {
|
||||||
root::nsTArray<root::nsCOMPtr<root::nsIRunnable>> ) ));
|
root::nsTArray<root::nsCOMPtr<root::nsIRunnable>> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsCOMPtr_open0_nsIRunnable_close0_instantiation_1() {
|
fn __bindgen_test_layout_nsCOMPtr_open0_nsIRunnable_close0_instantiation_3() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsCOMPtr<root::nsIRunnable>>()
|
assert_eq!(::std::mem::size_of::<root::nsCOMPtr<root::nsIRunnable>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -36082,7 +36224,7 @@ pub mod root {
|
||||||
) ));
|
) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_225354_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_251547_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsISupports>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsISupports>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -36277,7 +36419,7 @@ pub mod root {
|
||||||
root::nsTArray<f64> ) ));
|
root::nsTArray<f64> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_226802_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_252995_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::dom::Element>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::dom::Element>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -36382,7 +36524,7 @@ pub mod root {
|
||||||
root::nsRefPtrHashKey<root::nsIAtom> ) ));
|
root::nsRefPtrHashKey<root::nsIAtom> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_229225_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_255418_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::CounterStyle>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::CounterStyle>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -36393,7 +36535,7 @@ pub mod root {
|
||||||
root::nsTArray<*mut root::mozilla::CounterStyle> ) ));
|
root::nsTArray<*mut root::mozilla::CounterStyle> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0_nsCOMPtr_open1_nsIRunnable_close1_close0_instantiation_1() {
|
fn __bindgen_test_layout_nsTArray_open0_nsCOMPtr_open1_nsIRunnable_close1_close0_instantiation_3() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<root::nsCOMPtr<root::nsIRunnable>>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<root::nsCOMPtr<root::nsIRunnable>>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -36404,7 +36546,7 @@ pub mod root {
|
||||||
root::nsTArray<root::nsCOMPtr<root::nsIRunnable>> ) ));
|
root::nsTArray<root::nsCOMPtr<root::nsIRunnable>> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsCOMPtr_open0_nsIRunnable_close0_instantiation_2() {
|
fn __bindgen_test_layout_nsCOMPtr_open0_nsIRunnable_close0_instantiation_4() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsCOMPtr<root::nsIRunnable>>()
|
assert_eq!(::std::mem::size_of::<root::nsCOMPtr<root::nsIRunnable>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -37083,7 +37225,7 @@ pub mod root {
|
||||||
root::RefPtr<root::nsStyleImageRequest> ) ));
|
root::RefPtr<root::nsStyleImageRequest> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_231778_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_257971_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsISupports>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsISupports>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -37320,7 +37462,7 @@ pub mod root {
|
||||||
root::nsCOMPtr<root::nsIURI> ) ));
|
root::nsCOMPtr<root::nsIURI> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_239586_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_265779_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -37331,7 +37473,7 @@ pub mod root {
|
||||||
root::nsTArray<*mut root::nsIContent> ) ));
|
root::nsTArray<*mut root::nsIContent> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_239591_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_265784_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -37419,7 +37561,7 @@ pub mod root {
|
||||||
root::RefPtr<root::mozilla::dom::ShadowRoot> ) ));
|
root::RefPtr<root::mozilla::dom::ShadowRoot> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_239704_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_265897_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -37706,7 +37848,7 @@ pub mod root {
|
||||||
) ));
|
) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_241290_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_267483_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -37728,7 +37870,7 @@ pub mod root {
|
||||||
root::RefPtr<root::mozilla::dom::Element> ) ));
|
root::RefPtr<root::mozilla::dom::Element> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_241452_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_267645_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -37739,7 +37881,7 @@ pub mod root {
|
||||||
root::nsTArray<*mut root::nsIContent> ) ));
|
root::nsTArray<*mut root::nsIContent> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_241457_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_267650_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -37871,7 +38013,7 @@ pub mod root {
|
||||||
root::nsTArray<root::mozilla::gfx::FontVariation> ) ));
|
root::nsTArray<root::mozilla::gfx::FontVariation> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_243541_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_269734_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::css::DocumentRule>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::css::DocumentRule>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -37882,7 +38024,7 @@ pub mod root {
|
||||||
root::nsTArray<*mut root::mozilla::css::DocumentRule> ) ));
|
root::nsTArray<*mut root::mozilla::css::DocumentRule> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_243549_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_269742_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::css::DocumentRule>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::css::DocumentRule>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
|
|
@ -1052,8 +1052,6 @@ pub mod root {
|
||||||
}
|
}
|
||||||
pub type pair_first_type<_T1> = _T1;
|
pub type pair_first_type<_T1> = _T1;
|
||||||
pub type pair_second_type<_T2> = _T2;
|
pub type pair_second_type<_T2> = _T2;
|
||||||
pub type pair__PCCP = u8;
|
|
||||||
pub type pair__PCCFP = u8;
|
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
#[derive(Debug, Copy)]
|
#[derive(Debug, Copy)]
|
||||||
pub struct input_iterator_tag {
|
pub struct input_iterator_tag {
|
||||||
|
@ -8131,6 +8129,51 @@ pub mod root {
|
||||||
PropertyStyleAnimationValuePair ) , "::" , stringify !
|
PropertyStyleAnimationValuePair ) , "::" , stringify !
|
||||||
( mValue ) ));
|
( mValue ) ));
|
||||||
}
|
}
|
||||||
|
pub const OriginFlags_UserAgent: root::mozilla::OriginFlags =
|
||||||
|
OriginFlags(1);
|
||||||
|
pub const OriginFlags_User: root::mozilla::OriginFlags =
|
||||||
|
OriginFlags(2);
|
||||||
|
pub const OriginFlags_Author: root::mozilla::OriginFlags =
|
||||||
|
OriginFlags(4);
|
||||||
|
pub const OriginFlags_All: root::mozilla::OriginFlags =
|
||||||
|
OriginFlags(7);
|
||||||
|
impl ::std::ops::BitOr<root::mozilla::OriginFlags> for
|
||||||
|
root::mozilla::OriginFlags {
|
||||||
|
type
|
||||||
|
Output
|
||||||
|
=
|
||||||
|
Self;
|
||||||
|
#[inline]
|
||||||
|
fn bitor(self, other: Self) -> Self {
|
||||||
|
OriginFlags(self.0 | other.0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
impl ::std::ops::BitOrAssign for root::mozilla::OriginFlags {
|
||||||
|
#[inline]
|
||||||
|
fn bitor_assign(&mut self, rhs: root::mozilla::OriginFlags) {
|
||||||
|
self.0 |= rhs.0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
impl ::std::ops::BitAnd<root::mozilla::OriginFlags> for
|
||||||
|
root::mozilla::OriginFlags {
|
||||||
|
type
|
||||||
|
Output
|
||||||
|
=
|
||||||
|
Self;
|
||||||
|
#[inline]
|
||||||
|
fn bitand(self, other: Self) -> Self {
|
||||||
|
OriginFlags(self.0 & other.0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
impl ::std::ops::BitAndAssign for root::mozilla::OriginFlags {
|
||||||
|
#[inline]
|
||||||
|
fn bitand_assign(&mut self, rhs: root::mozilla::OriginFlags) {
|
||||||
|
self.0 &= rhs.0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#[repr(C)]
|
||||||
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||||
|
pub struct OriginFlags(pub u8);
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_DefaultDelete_open0_RawServoStyleSet_close0_instantiation() {
|
fn __bindgen_test_layout_DefaultDelete_open0_RawServoStyleSet_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::mozilla::DefaultDelete>() ,
|
assert_eq!(::std::mem::size_of::<root::mozilla::DefaultDelete>() ,
|
||||||
|
@ -16685,6 +16728,7 @@ pub mod root {
|
||||||
pub mPageUnloadingEventTimeStamp: root::mozilla::TimeStamp,
|
pub mPageUnloadingEventTimeStamp: root::mozilla::TimeStamp,
|
||||||
pub mDocGroup: root::RefPtr<root::mozilla::dom::DocGroup>,
|
pub mDocGroup: root::RefPtr<root::mozilla::dom::DocGroup>,
|
||||||
pub mTrackingScripts: [u64; 5usize],
|
pub mTrackingScripts: [u64; 5usize],
|
||||||
|
pub mBufferedCSPViolations: root::nsTArray<root::nsCOMPtr>,
|
||||||
}
|
}
|
||||||
pub type nsIDocument_GlobalObject = root::mozilla::dom::GlobalObject;
|
pub type nsIDocument_GlobalObject = root::mozilla::dom::GlobalObject;
|
||||||
pub type nsIDocument_Encoding = root::mozilla::Encoding;
|
pub type nsIDocument_Encoding = root::mozilla::Encoding;
|
||||||
|
@ -16979,7 +17023,7 @@ pub mod root {
|
||||||
pub const nsIDocument_kSegmentSize: usize = 128;
|
pub const nsIDocument_kSegmentSize: usize = 128;
|
||||||
#[test]
|
#[test]
|
||||||
fn bindgen_test_layout_nsIDocument() {
|
fn bindgen_test_layout_nsIDocument() {
|
||||||
assert_eq!(::std::mem::size_of::<nsIDocument>() , 856usize , concat !
|
assert_eq!(::std::mem::size_of::<nsIDocument>() , 864usize , concat !
|
||||||
( "Size of: " , stringify ! ( nsIDocument ) ));
|
( "Size of: " , stringify ! ( nsIDocument ) ));
|
||||||
assert_eq! (::std::mem::align_of::<nsIDocument>() , 8usize , concat !
|
assert_eq! (::std::mem::align_of::<nsIDocument>() , 8usize , concat !
|
||||||
( "Alignment of " , stringify ! ( nsIDocument ) ));
|
( "Alignment of " , stringify ! ( nsIDocument ) ));
|
||||||
|
@ -18848,7 +18892,7 @@ pub mod root {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn mIsScopedStyleEnabled(&self) -> ::std::os::raw::c_uint {
|
pub fn mBufferingCSPViolations(&self) -> bool {
|
||||||
let mut unit_field_val: u64 =
|
let mut unit_field_val: u64 =
|
||||||
unsafe { ::std::mem::uninitialized() };
|
unsafe { ::std::mem::uninitialized() };
|
||||||
unsafe {
|
unsafe {
|
||||||
|
@ -18858,15 +18902,14 @@ pub mod root {
|
||||||
*mut u64 as *mut u8,
|
*mut u64 as *mut u8,
|
||||||
::std::mem::size_of::<u64>())
|
::std::mem::size_of::<u64>())
|
||||||
};
|
};
|
||||||
let mask = 1688849860263936u64 as u64;
|
let mask = 562949953421312u64 as u64;
|
||||||
let val = (unit_field_val & mask) >> 49usize;
|
let val = (unit_field_val & mask) >> 49usize;
|
||||||
unsafe { ::std::mem::transmute(val as u32) }
|
unsafe { ::std::mem::transmute(val as u8) }
|
||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn set_mIsScopedStyleEnabled(&mut self,
|
pub fn set_mBufferingCSPViolations(&mut self, val: bool) {
|
||||||
val: ::std::os::raw::c_uint) {
|
let mask = 562949953421312u64 as u64;
|
||||||
let mask = 1688849860263936u64 as u64;
|
let val = val as u8 as u64;
|
||||||
let val = val as u32 as u64;
|
|
||||||
let mut unit_field_val: u64 =
|
let mut unit_field_val: u64 =
|
||||||
unsafe { ::std::mem::uninitialized() };
|
unsafe { ::std::mem::uninitialized() };
|
||||||
unsafe {
|
unsafe {
|
||||||
|
@ -18887,6 +18930,45 @@ pub mod root {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#[inline]
|
#[inline]
|
||||||
|
pub fn mIsScopedStyleEnabled(&self) -> ::std::os::raw::c_uint {
|
||||||
|
let mut unit_field_val: u64 =
|
||||||
|
unsafe { ::std::mem::uninitialized() };
|
||||||
|
unsafe {
|
||||||
|
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _
|
||||||
|
as *const u8,
|
||||||
|
&mut unit_field_val as
|
||||||
|
*mut u64 as *mut u8,
|
||||||
|
::std::mem::size_of::<u64>())
|
||||||
|
};
|
||||||
|
let mask = 3377699720527872u64 as u64;
|
||||||
|
let val = (unit_field_val & mask) >> 50usize;
|
||||||
|
unsafe { ::std::mem::transmute(val as u32) }
|
||||||
|
}
|
||||||
|
#[inline]
|
||||||
|
pub fn set_mIsScopedStyleEnabled(&mut self,
|
||||||
|
val: ::std::os::raw::c_uint) {
|
||||||
|
let mask = 3377699720527872u64 as u64;
|
||||||
|
let val = val as u32 as u64;
|
||||||
|
let mut unit_field_val: u64 =
|
||||||
|
unsafe { ::std::mem::uninitialized() };
|
||||||
|
unsafe {
|
||||||
|
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _
|
||||||
|
as *const u8,
|
||||||
|
&mut unit_field_val as
|
||||||
|
*mut u64 as *mut u8,
|
||||||
|
::std::mem::size_of::<u64>())
|
||||||
|
};
|
||||||
|
unit_field_val &= !mask;
|
||||||
|
unit_field_val |= (val << 50usize) & mask;
|
||||||
|
unsafe {
|
||||||
|
::std::ptr::copy_nonoverlapping(&unit_field_val as *const _ as
|
||||||
|
*const u8,
|
||||||
|
&mut self._bitfield_1 as
|
||||||
|
*mut _ as *mut u8,
|
||||||
|
::std::mem::size_of::<u64>());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#[inline]
|
||||||
pub fn new_bitfield_1(mBidiEnabled: bool, mMathMLEnabled: bool,
|
pub fn new_bitfield_1(mBidiEnabled: bool, mMathMLEnabled: bool,
|
||||||
mIsInitialDocumentInWindow: bool,
|
mIsInitialDocumentInWindow: bool,
|
||||||
mIgnoreDocGroupMismatches: bool,
|
mIgnoreDocGroupMismatches: bool,
|
||||||
|
@ -18931,6 +19013,7 @@ pub mod root {
|
||||||
mIsContentDocument: bool,
|
mIsContentDocument: bool,
|
||||||
mMightHaveStaleServoData: bool,
|
mMightHaveStaleServoData: bool,
|
||||||
mDidCallBeginLoad: bool,
|
mDidCallBeginLoad: bool,
|
||||||
|
mBufferingCSPViolations: bool,
|
||||||
mIsScopedStyleEnabled: ::std::os::raw::c_uint)
|
mIsScopedStyleEnabled: ::std::os::raw::c_uint)
|
||||||
-> u64 {
|
-> u64 {
|
||||||
({
|
({
|
||||||
|
@ -18983,6 +19066,7 @@ pub mod root {
|
||||||
({
|
({
|
||||||
({
|
({
|
||||||
({
|
({
|
||||||
|
({
|
||||||
0
|
0
|
||||||
}
|
}
|
||||||
|
|
|
|
||||||
|
@ -19465,7 +19549,8 @@ pub mod root {
|
||||||
(68719476736u64
|
(68719476736u64
|
||||||
as
|
as
|
||||||
u64))
|
u64))
|
||||||
} |
|
}
|
||||||
|
|
|
||||||
((mDidDocumentOpen
|
((mDidDocumentOpen
|
||||||
as
|
as
|
||||||
u8
|
u8
|
||||||
|
@ -19491,7 +19576,8 @@ pub mod root {
|
||||||
u64))
|
u64))
|
||||||
} |
|
} |
|
||||||
((mFontFaceSetDirty
|
((mFontFaceSetDirty
|
||||||
as u8
|
as
|
||||||
|
u8
|
||||||
as
|
as
|
||||||
u64)
|
u64)
|
||||||
<<
|
<<
|
||||||
|
@ -19502,39 +19588,48 @@ pub mod root {
|
||||||
u64))
|
u64))
|
||||||
} |
|
} |
|
||||||
((mGetUserFontSetCalled
|
((mGetUserFontSetCalled
|
||||||
as u8 as
|
as u8
|
||||||
u64) <<
|
as
|
||||||
40usize) &
|
u64)
|
||||||
|
<<
|
||||||
|
40usize)
|
||||||
|
&
|
||||||
(1099511627776u64
|
(1099511627776u64
|
||||||
as
|
as
|
||||||
u64))
|
u64))
|
||||||
} |
|
} |
|
||||||
((mPostedFlushUserFontSet
|
((mPostedFlushUserFontSet
|
||||||
as u8 as u64)
|
as u8 as
|
||||||
<< 41usize) &
|
u64) <<
|
||||||
|
41usize) &
|
||||||
(2199023255552u64
|
(2199023255552u64
|
||||||
as u64))
|
as
|
||||||
} |
|
|
||||||
((mDidFireDOMContentLoaded
|
|
||||||
as u8 as u64) <<
|
|
||||||
42usize) &
|
|
||||||
(4398046511104u64 as
|
|
||||||
u64))
|
u64))
|
||||||
} |
|
} |
|
||||||
((mHasScrollLinkedEffect as u8
|
((mDidFireDOMContentLoaded
|
||||||
as u64) << 43usize) &
|
as u8 as u64)
|
||||||
(8796093022208u64 as u64))
|
<< 42usize) &
|
||||||
|
(4398046511104u64
|
||||||
|
as u64))
|
||||||
} |
|
} |
|
||||||
((mFrameRequestCallbacksScheduled as
|
((mHasScrollLinkedEffect
|
||||||
u8 as u64) << 44usize) &
|
as u8 as u64) <<
|
||||||
|
43usize) &
|
||||||
|
(8796093022208u64 as
|
||||||
|
u64))
|
||||||
|
} |
|
||||||
|
((mFrameRequestCallbacksScheduled
|
||||||
|
as u8 as u64) << 44usize)
|
||||||
|
&
|
||||||
(17592186044416u64 as u64))
|
(17592186044416u64 as u64))
|
||||||
} |
|
} |
|
||||||
((mIsTopLevelContentDocument as u8 as
|
((mIsTopLevelContentDocument as u8
|
||||||
u64) << 45usize) &
|
as u64) << 45usize) &
|
||||||
(35184372088832u64 as u64))
|
(35184372088832u64 as u64))
|
||||||
} |
|
} |
|
||||||
((mIsContentDocument as u8 as u64) << 46usize)
|
((mIsContentDocument as u8 as u64) <<
|
||||||
& (70368744177664u64 as u64))
|
46usize) &
|
||||||
|
(70368744177664u64 as u64))
|
||||||
} |
|
} |
|
||||||
((mMightHaveStaleServoData as u8 as u64) <<
|
((mMightHaveStaleServoData as u8 as u64) <<
|
||||||
47usize) & (140737488355328u64 as u64))
|
47usize) & (140737488355328u64 as u64))
|
||||||
|
@ -19542,8 +19637,11 @@ pub mod root {
|
||||||
((mDidCallBeginLoad as u8 as u64) << 48usize) &
|
((mDidCallBeginLoad as u8 as u64) << 48usize) &
|
||||||
(281474976710656u64 as u64))
|
(281474976710656u64 as u64))
|
||||||
} |
|
} |
|
||||||
((mIsScopedStyleEnabled as u32 as u64) << 49usize) &
|
((mBufferingCSPViolations as u8 as u64) << 49usize) &
|
||||||
(1688849860263936u64 as u64))
|
(562949953421312u64 as u64))
|
||||||
|
} |
|
||||||
|
((mIsScopedStyleEnabled as u32 as u64) << 50usize) &
|
||||||
|
(3377699720527872u64 as u64))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
|
@ -24618,57 +24716,57 @@ pub mod root {
|
||||||
pub struct nsRange {
|
pub struct nsRange {
|
||||||
_unused: [u8; 0],
|
_unused: [u8; 0],
|
||||||
}
|
}
|
||||||
pub const NODE_HAS_LISTENERMANAGER: root::_bindgen_ty_72 =
|
pub const NODE_HAS_LISTENERMANAGER: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_LISTENERMANAGER;
|
_bindgen_ty_84::NODE_HAS_LISTENERMANAGER;
|
||||||
pub const NODE_HAS_PROPERTIES: root::_bindgen_ty_72 =
|
pub const NODE_HAS_PROPERTIES: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_PROPERTIES;
|
_bindgen_ty_84::NODE_HAS_PROPERTIES;
|
||||||
pub const NODE_IS_ANONYMOUS_ROOT: root::_bindgen_ty_72 =
|
pub const NODE_IS_ANONYMOUS_ROOT: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_IS_ANONYMOUS_ROOT;
|
_bindgen_ty_84::NODE_IS_ANONYMOUS_ROOT;
|
||||||
pub const NODE_IS_IN_NATIVE_ANONYMOUS_SUBTREE: root::_bindgen_ty_72 =
|
pub const NODE_IS_IN_NATIVE_ANONYMOUS_SUBTREE: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_IS_IN_NATIVE_ANONYMOUS_SUBTREE;
|
_bindgen_ty_84::NODE_IS_IN_NATIVE_ANONYMOUS_SUBTREE;
|
||||||
pub const NODE_IS_NATIVE_ANONYMOUS_ROOT: root::_bindgen_ty_72 =
|
pub const NODE_IS_NATIVE_ANONYMOUS_ROOT: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_IS_NATIVE_ANONYMOUS_ROOT;
|
_bindgen_ty_84::NODE_IS_NATIVE_ANONYMOUS_ROOT;
|
||||||
pub const NODE_FORCE_XBL_BINDINGS: root::_bindgen_ty_72 =
|
pub const NODE_FORCE_XBL_BINDINGS: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_FORCE_XBL_BINDINGS;
|
_bindgen_ty_84::NODE_FORCE_XBL_BINDINGS;
|
||||||
pub const NODE_MAY_BE_IN_BINDING_MNGR: root::_bindgen_ty_72 =
|
pub const NODE_MAY_BE_IN_BINDING_MNGR: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_MAY_BE_IN_BINDING_MNGR;
|
_bindgen_ty_84::NODE_MAY_BE_IN_BINDING_MNGR;
|
||||||
pub const NODE_IS_EDITABLE: root::_bindgen_ty_72 =
|
pub const NODE_IS_EDITABLE: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_IS_EDITABLE;
|
_bindgen_ty_84::NODE_IS_EDITABLE;
|
||||||
pub const NODE_IS_NATIVE_ANONYMOUS: root::_bindgen_ty_72 =
|
pub const NODE_IS_NATIVE_ANONYMOUS: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_IS_NATIVE_ANONYMOUS;
|
_bindgen_ty_84::NODE_IS_NATIVE_ANONYMOUS;
|
||||||
pub const NODE_IS_IN_SHADOW_TREE: root::_bindgen_ty_72 =
|
pub const NODE_IS_IN_SHADOW_TREE: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_IS_IN_SHADOW_TREE;
|
_bindgen_ty_84::NODE_IS_IN_SHADOW_TREE;
|
||||||
pub const NODE_HAS_EMPTY_SELECTOR: root::_bindgen_ty_72 =
|
pub const NODE_HAS_EMPTY_SELECTOR: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_EMPTY_SELECTOR;
|
_bindgen_ty_84::NODE_HAS_EMPTY_SELECTOR;
|
||||||
pub const NODE_HAS_SLOW_SELECTOR: root::_bindgen_ty_72 =
|
pub const NODE_HAS_SLOW_SELECTOR: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_SLOW_SELECTOR;
|
_bindgen_ty_84::NODE_HAS_SLOW_SELECTOR;
|
||||||
pub const NODE_HAS_EDGE_CHILD_SELECTOR: root::_bindgen_ty_72 =
|
pub const NODE_HAS_EDGE_CHILD_SELECTOR: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_EDGE_CHILD_SELECTOR;
|
_bindgen_ty_84::NODE_HAS_EDGE_CHILD_SELECTOR;
|
||||||
pub const NODE_HAS_SLOW_SELECTOR_LATER_SIBLINGS: root::_bindgen_ty_72 =
|
pub const NODE_HAS_SLOW_SELECTOR_LATER_SIBLINGS: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_SLOW_SELECTOR_LATER_SIBLINGS;
|
_bindgen_ty_84::NODE_HAS_SLOW_SELECTOR_LATER_SIBLINGS;
|
||||||
pub const NODE_ALL_SELECTOR_FLAGS: root::_bindgen_ty_72 =
|
pub const NODE_ALL_SELECTOR_FLAGS: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_ALL_SELECTOR_FLAGS;
|
_bindgen_ty_84::NODE_ALL_SELECTOR_FLAGS;
|
||||||
pub const NODE_NEEDS_FRAME: root::_bindgen_ty_72 =
|
pub const NODE_NEEDS_FRAME: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_NEEDS_FRAME;
|
_bindgen_ty_84::NODE_NEEDS_FRAME;
|
||||||
pub const NODE_DESCENDANTS_NEED_FRAMES: root::_bindgen_ty_72 =
|
pub const NODE_DESCENDANTS_NEED_FRAMES: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_DESCENDANTS_NEED_FRAMES;
|
_bindgen_ty_84::NODE_DESCENDANTS_NEED_FRAMES;
|
||||||
pub const NODE_HAS_ACCESSKEY: root::_bindgen_ty_72 =
|
pub const NODE_HAS_ACCESSKEY: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_ACCESSKEY;
|
_bindgen_ty_84::NODE_HAS_ACCESSKEY;
|
||||||
pub const NODE_HAS_DIRECTION_RTL: root::_bindgen_ty_72 =
|
pub const NODE_HAS_DIRECTION_RTL: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_DIRECTION_RTL;
|
_bindgen_ty_84::NODE_HAS_DIRECTION_RTL;
|
||||||
pub const NODE_HAS_DIRECTION_LTR: root::_bindgen_ty_72 =
|
pub const NODE_HAS_DIRECTION_LTR: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_HAS_DIRECTION_LTR;
|
_bindgen_ty_84::NODE_HAS_DIRECTION_LTR;
|
||||||
pub const NODE_ALL_DIRECTION_FLAGS: root::_bindgen_ty_72 =
|
pub const NODE_ALL_DIRECTION_FLAGS: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_ALL_DIRECTION_FLAGS;
|
_bindgen_ty_84::NODE_ALL_DIRECTION_FLAGS;
|
||||||
pub const NODE_CHROME_ONLY_ACCESS: root::_bindgen_ty_72 =
|
pub const NODE_CHROME_ONLY_ACCESS: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_CHROME_ONLY_ACCESS;
|
_bindgen_ty_84::NODE_CHROME_ONLY_ACCESS;
|
||||||
pub const NODE_IS_ROOT_OF_CHROME_ONLY_ACCESS: root::_bindgen_ty_72 =
|
pub const NODE_IS_ROOT_OF_CHROME_ONLY_ACCESS: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_IS_ROOT_OF_CHROME_ONLY_ACCESS;
|
_bindgen_ty_84::NODE_IS_ROOT_OF_CHROME_ONLY_ACCESS;
|
||||||
pub const NODE_TYPE_SPECIFIC_BITS_OFFSET: root::_bindgen_ty_72 =
|
pub const NODE_TYPE_SPECIFIC_BITS_OFFSET: root::_bindgen_ty_84 =
|
||||||
_bindgen_ty_72::NODE_TYPE_SPECIFIC_BITS_OFFSET;
|
_bindgen_ty_84::NODE_TYPE_SPECIFIC_BITS_OFFSET;
|
||||||
#[repr(u32)]
|
#[repr(u32)]
|
||||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||||
pub enum _bindgen_ty_72 {
|
pub enum _bindgen_ty_84 {
|
||||||
NODE_HAS_LISTENERMANAGER = 4,
|
NODE_HAS_LISTENERMANAGER = 4,
|
||||||
NODE_HAS_PROPERTIES = 8,
|
NODE_HAS_PROPERTIES = 8,
|
||||||
NODE_IS_ANONYMOUS_ROOT = 16,
|
NODE_IS_ANONYMOUS_ROOT = 16,
|
||||||
|
@ -32150,46 +32248,46 @@ pub mod root {
|
||||||
assert_eq! (::std::mem::align_of::<nsISMILAttr>() , 8usize , concat !
|
assert_eq! (::std::mem::align_of::<nsISMILAttr>() , 8usize , concat !
|
||||||
( "Alignment of " , stringify ! ( nsISMILAttr ) ));
|
( "Alignment of " , stringify ! ( nsISMILAttr ) ));
|
||||||
}
|
}
|
||||||
pub const ELEMENT_SHARED_RESTYLE_BIT_1: root::_bindgen_ty_74 =
|
pub const ELEMENT_SHARED_RESTYLE_BIT_1: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_1;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_1;
|
||||||
pub const ELEMENT_SHARED_RESTYLE_BIT_2: root::_bindgen_ty_74 =
|
pub const ELEMENT_SHARED_RESTYLE_BIT_2: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_2;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_2;
|
||||||
pub const ELEMENT_SHARED_RESTYLE_BIT_3: root::_bindgen_ty_74 =
|
pub const ELEMENT_SHARED_RESTYLE_BIT_3: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_3;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_3;
|
||||||
pub const ELEMENT_SHARED_RESTYLE_BIT_4: root::_bindgen_ty_74 =
|
pub const ELEMENT_SHARED_RESTYLE_BIT_4: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_4;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_4;
|
||||||
pub const ELEMENT_HAS_DIRTY_DESCENDANTS_FOR_SERVO: root::_bindgen_ty_74 =
|
pub const ELEMENT_HAS_DIRTY_DESCENDANTS_FOR_SERVO: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_1;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_1;
|
||||||
pub const ELEMENT_HAS_ANIMATION_ONLY_DIRTY_DESCENDANTS_FOR_SERVO:
|
pub const ELEMENT_HAS_ANIMATION_ONLY_DIRTY_DESCENDANTS_FOR_SERVO:
|
||||||
root::_bindgen_ty_74 =
|
root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_2;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_2;
|
||||||
pub const ELEMENT_HAS_SNAPSHOT: root::_bindgen_ty_74 =
|
pub const ELEMENT_HAS_SNAPSHOT: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_3;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_3;
|
||||||
pub const ELEMENT_HANDLED_SNAPSHOT: root::_bindgen_ty_74 =
|
pub const ELEMENT_HANDLED_SNAPSHOT: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_4;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_4;
|
||||||
pub const ELEMENT_HAS_PENDING_RESTYLE: root::_bindgen_ty_74 =
|
pub const ELEMENT_HAS_PENDING_RESTYLE: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_1;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_1;
|
||||||
pub const ELEMENT_IS_POTENTIAL_RESTYLE_ROOT: root::_bindgen_ty_74 =
|
pub const ELEMENT_IS_POTENTIAL_RESTYLE_ROOT: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_2;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_2;
|
||||||
pub const ELEMENT_HAS_PENDING_ANIMATION_ONLY_RESTYLE: root::_bindgen_ty_74
|
pub const ELEMENT_HAS_PENDING_ANIMATION_ONLY_RESTYLE: root::_bindgen_ty_86
|
||||||
=
|
=
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_3;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_3;
|
||||||
pub const ELEMENT_IS_POTENTIAL_ANIMATION_ONLY_RESTYLE_ROOT:
|
pub const ELEMENT_IS_POTENTIAL_ANIMATION_ONLY_RESTYLE_ROOT:
|
||||||
root::_bindgen_ty_74 =
|
root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_SHARED_RESTYLE_BIT_4;
|
_bindgen_ty_86::ELEMENT_SHARED_RESTYLE_BIT_4;
|
||||||
pub const ELEMENT_IS_CONDITIONAL_RESTYLE_ANCESTOR: root::_bindgen_ty_74 =
|
pub const ELEMENT_IS_CONDITIONAL_RESTYLE_ANCESTOR: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_IS_CONDITIONAL_RESTYLE_ANCESTOR;
|
_bindgen_ty_86::ELEMENT_IS_CONDITIONAL_RESTYLE_ANCESTOR;
|
||||||
pub const ELEMENT_PENDING_RESTYLE_FLAGS: root::_bindgen_ty_74 =
|
pub const ELEMENT_PENDING_RESTYLE_FLAGS: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_PENDING_RESTYLE_FLAGS;
|
_bindgen_ty_86::ELEMENT_PENDING_RESTYLE_FLAGS;
|
||||||
pub const ELEMENT_POTENTIAL_RESTYLE_ROOT_FLAGS: root::_bindgen_ty_74 =
|
pub const ELEMENT_POTENTIAL_RESTYLE_ROOT_FLAGS: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_POTENTIAL_RESTYLE_ROOT_FLAGS;
|
_bindgen_ty_86::ELEMENT_POTENTIAL_RESTYLE_ROOT_FLAGS;
|
||||||
pub const ELEMENT_ALL_RESTYLE_FLAGS: root::_bindgen_ty_74 =
|
pub const ELEMENT_ALL_RESTYLE_FLAGS: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_ALL_RESTYLE_FLAGS;
|
_bindgen_ty_86::ELEMENT_ALL_RESTYLE_FLAGS;
|
||||||
pub const ELEMENT_TYPE_SPECIFIC_BITS_OFFSET: root::_bindgen_ty_74 =
|
pub const ELEMENT_TYPE_SPECIFIC_BITS_OFFSET: root::_bindgen_ty_86 =
|
||||||
_bindgen_ty_74::ELEMENT_TYPE_SPECIFIC_BITS_OFFSET;
|
_bindgen_ty_86::ELEMENT_TYPE_SPECIFIC_BITS_OFFSET;
|
||||||
#[repr(u32)]
|
#[repr(u32)]
|
||||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||||
pub enum _bindgen_ty_74 {
|
pub enum _bindgen_ty_86 {
|
||||||
ELEMENT_SHARED_RESTYLE_BIT_1 = 8388608,
|
ELEMENT_SHARED_RESTYLE_BIT_1 = 8388608,
|
||||||
ELEMENT_SHARED_RESTYLE_BIT_2 = 16777216,
|
ELEMENT_SHARED_RESTYLE_BIT_2 = 16777216,
|
||||||
ELEMENT_SHARED_RESTYLE_BIT_3 = 33554432,
|
ELEMENT_SHARED_RESTYLE_BIT_3 = 33554432,
|
||||||
|
@ -33065,7 +33163,7 @@ pub mod root {
|
||||||
root::nsTArray<root::mozilla::gfx::FontVariation> ) ));
|
root::nsTArray<root::mozilla::gfx::FontVariation> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_198181_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_224480_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsCSSSelector>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsCSSSelector>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -33421,7 +33519,7 @@ pub mod root {
|
||||||
root::mozilla::binding_danger::TErrorResult ) ));
|
root::mozilla::binding_danger::TErrorResult ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_199964_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_226263_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -33582,7 +33680,7 @@ pub mod root {
|
||||||
root::JS::DeletePolicy ) ));
|
root::JS::DeletePolicy ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_iterator_open0_input_iterator_tag_UniquePtr_open1_JSErrorNotes_Note_DeletePolicy_open2_JSErrorNotes_Note_close2_close1_long__bindgen_ty_id_205555__bindgen_ty_id_205562_close0_instantiation() {
|
fn __bindgen_test_layout_iterator_open0_input_iterator_tag_UniquePtr_open1_JSErrorNotes_Note_DeletePolicy_open2_JSErrorNotes_Note_close2_close1_long__bindgen_ty_id_231846__bindgen_ty_id_231853_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::std::iterator>() , 1usize ,
|
assert_eq!(::std::mem::size_of::<root::std::iterator>() , 1usize ,
|
||||||
concat ! (
|
concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -33747,6 +33845,28 @@ pub mod root {
|
||||||
root::nsCOMPtr ) ));
|
root::nsCOMPtr ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
|
fn __bindgen_test_layout_nsTArray_open0_nsCOMPtr_open1_nsIRunnable_close1_close0_instantiation() {
|
||||||
|
assert_eq!(::std::mem::size_of::<root::nsTArray<root::nsCOMPtr>>() ,
|
||||||
|
8usize , concat ! (
|
||||||
|
"Size of template specialization: " , stringify ! (
|
||||||
|
root::nsTArray<root::nsCOMPtr> ) ));
|
||||||
|
assert_eq!(::std::mem::align_of::<root::nsTArray<root::nsCOMPtr>>() ,
|
||||||
|
8usize , concat ! (
|
||||||
|
"Alignment of template specialization: " , stringify ! (
|
||||||
|
root::nsTArray<root::nsCOMPtr> ) ));
|
||||||
|
}
|
||||||
|
#[test]
|
||||||
|
fn __bindgen_test_layout_nsCOMPtr_open0_nsIRunnable_close0_instantiation() {
|
||||||
|
assert_eq!(::std::mem::size_of::<root::nsCOMPtr>() , 8usize , concat !
|
||||||
|
(
|
||||||
|
"Size of template specialization: " , stringify ! (
|
||||||
|
root::nsCOMPtr ) ));
|
||||||
|
assert_eq!(::std::mem::align_of::<root::nsCOMPtr>() , 8usize , concat
|
||||||
|
! (
|
||||||
|
"Alignment of template specialization: " , stringify ! (
|
||||||
|
root::nsCOMPtr ) ));
|
||||||
|
}
|
||||||
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0_RefPtr_open1_AnonymousContent_close1_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0_RefPtr_open1_AnonymousContent_close1_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<root::RefPtr<root::mozilla::dom::AnonymousContent>>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<root::RefPtr<root::mozilla::dom::AnonymousContent>>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
|
@ -33808,7 +33928,7 @@ pub mod root {
|
||||||
root::RefPtr<root::mozilla::StyleSheet> ) ));
|
root::RefPtr<root::mozilla::StyleSheet> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_208038_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_234329_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::dom::Element>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::dom::Element>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -33876,7 +33996,7 @@ pub mod root {
|
||||||
root::nsCOMPtr ) ));
|
root::nsCOMPtr ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_208340_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_234631_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::dom::Element>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::dom::Element>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -33988,7 +34108,7 @@ pub mod root {
|
||||||
root::RefPtr<root::mozilla::URLExtraData> ) ));
|
root::RefPtr<root::mozilla::URLExtraData> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_NotNull_open0__bindgen_ty_id_208882_close0_instantiation() {
|
fn __bindgen_test_layout_NotNull_open0__bindgen_ty_id_235173_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::mozilla::NotNull<*const root::mozilla::Encoding>>()
|
assert_eq!(::std::mem::size_of::<root::mozilla::NotNull<*const root::mozilla::Encoding>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -34311,6 +34431,28 @@ pub mod root {
|
||||||
root::RefPtr<root::mozilla::dom::DocGroup> ) ));
|
root::RefPtr<root::mozilla::dom::DocGroup> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
|
fn __bindgen_test_layout_nsTArray_open0_nsCOMPtr_open1_nsIRunnable_close1_close0_instantiation_1() {
|
||||||
|
assert_eq!(::std::mem::size_of::<root::nsTArray<root::nsCOMPtr>>() ,
|
||||||
|
8usize , concat ! (
|
||||||
|
"Size of template specialization: " , stringify ! (
|
||||||
|
root::nsTArray<root::nsCOMPtr> ) ));
|
||||||
|
assert_eq!(::std::mem::align_of::<root::nsTArray<root::nsCOMPtr>>() ,
|
||||||
|
8usize , concat ! (
|
||||||
|
"Alignment of template specialization: " , stringify ! (
|
||||||
|
root::nsTArray<root::nsCOMPtr> ) ));
|
||||||
|
}
|
||||||
|
#[test]
|
||||||
|
fn __bindgen_test_layout_nsCOMPtr_open0_nsIRunnable_close0_instantiation_1() {
|
||||||
|
assert_eq!(::std::mem::size_of::<root::nsCOMPtr>() , 8usize , concat !
|
||||||
|
(
|
||||||
|
"Size of template specialization: " , stringify ! (
|
||||||
|
root::nsCOMPtr ) ));
|
||||||
|
assert_eq!(::std::mem::align_of::<root::nsCOMPtr>() , 8usize , concat
|
||||||
|
! (
|
||||||
|
"Alignment of template specialization: " , stringify ! (
|
||||||
|
root::nsCOMPtr ) ));
|
||||||
|
}
|
||||||
|
#[test]
|
||||||
fn __bindgen_test_layout_RefPtr_open0_CSSRuleListImpl_close0_instantiation() {
|
fn __bindgen_test_layout_RefPtr_open0_CSSRuleListImpl_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::RefPtr<root::CSSRuleListImpl>>()
|
assert_eq!(::std::mem::size_of::<root::RefPtr<root::CSSRuleListImpl>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
|
@ -34368,7 +34510,7 @@ pub mod root {
|
||||||
root::RefPtr<root::mozilla::StyleSheet> ) ));
|
root::RefPtr<root::mozilla::StyleSheet> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_209295_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_235592_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -34458,7 +34600,7 @@ pub mod root {
|
||||||
) ));
|
) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_209692_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_235989_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -34559,7 +34701,7 @@ pub mod root {
|
||||||
root::nsTArray<::nsstring::nsStringRepr> ) ));
|
root::nsTArray<::nsstring::nsStringRepr> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_210646_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_236944_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -34648,7 +34790,7 @@ pub mod root {
|
||||||
root::RefPtr<root::nsCSSFontFaceRule> ) ));
|
root::RefPtr<root::nsCSSFontFaceRule> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_210949_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_237247_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -34659,7 +34801,7 @@ pub mod root {
|
||||||
root::nsTArray<*mut root::nsIContent> ) ));
|
root::nsTArray<*mut root::nsIContent> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_210954_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_237252_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -34716,7 +34858,7 @@ pub mod root {
|
||||||
root::RefPtr<root::mozilla::CSSStyleSheet> ) ));
|
root::RefPtr<root::mozilla::CSSStyleSheet> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_211429_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_237727_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::StyleSheet>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35351,7 +35493,7 @@ pub mod root {
|
||||||
root::nsCOMPtr ) ));
|
root::nsCOMPtr ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_214260_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_240548_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut ::std::os::raw::c_void>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut ::std::os::raw::c_void>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35430,7 +35572,7 @@ pub mod root {
|
||||||
root::mozilla::DefaultDelete ) ));
|
root::mozilla::DefaultDelete ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_220505_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_246801_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::dom::AudioContext>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::dom::AudioContext>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35463,7 +35605,7 @@ pub mod root {
|
||||||
root::RefPtr<root::mozilla::dom::CallbackObject> ) ));
|
root::RefPtr<root::mozilla::dom::CallbackObject> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_Heap_open0__bindgen_ty_id_221666_close0_instantiation() {
|
fn __bindgen_test_layout_Heap_open0__bindgen_ty_id_247962_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::JS::Heap<*mut root::JSObject>>()
|
assert_eq!(::std::mem::size_of::<root::JS::Heap<*mut root::JSObject>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35474,7 +35616,7 @@ pub mod root {
|
||||||
root::JS::Heap<*mut root::JSObject> ) ));
|
root::JS::Heap<*mut root::JSObject> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_Heap_open0__bindgen_ty_id_221670_close0_instantiation() {
|
fn __bindgen_test_layout_Heap_open0__bindgen_ty_id_247966_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::JS::Heap<*mut root::JSObject>>()
|
assert_eq!(::std::mem::size_of::<root::JS::Heap<*mut root::JSObject>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35496,7 +35638,7 @@ pub mod root {
|
||||||
root::nsCOMPtr ) ));
|
root::nsCOMPtr ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_TenuredHeap_open0__bindgen_ty_id_221677_close0_instantiation() {
|
fn __bindgen_test_layout_TenuredHeap_open0__bindgen_ty_id_247973_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::JS::TenuredHeap>() , 8usize ,
|
assert_eq!(::std::mem::size_of::<root::JS::TenuredHeap>() , 8usize ,
|
||||||
concat ! (
|
concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35529,7 +35671,7 @@ pub mod root {
|
||||||
root::nsCOMPtr ) ));
|
root::nsCOMPtr ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsCOMPtr_open0_nsIRunnable_close0_instantiation() {
|
fn __bindgen_test_layout_nsCOMPtr_open0_nsIRunnable_close0_instantiation_2() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsCOMPtr>() , 8usize , concat !
|
assert_eq!(::std::mem::size_of::<root::nsCOMPtr>() , 8usize , concat !
|
||||||
(
|
(
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35540,7 +35682,7 @@ pub mod root {
|
||||||
root::nsCOMPtr ) ));
|
root::nsCOMPtr ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0_nsCOMPtr_open1_nsIRunnable_close1_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0_nsCOMPtr_open1_nsIRunnable_close1_close0_instantiation_2() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<root::nsCOMPtr>>() ,
|
assert_eq!(::std::mem::size_of::<root::nsTArray<root::nsCOMPtr>>() ,
|
||||||
8usize , concat ! (
|
8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35551,7 +35693,7 @@ pub mod root {
|
||||||
root::nsTArray<root::nsCOMPtr> ) ));
|
root::nsTArray<root::nsCOMPtr> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsCOMPtr_open0_nsIRunnable_close0_instantiation_1() {
|
fn __bindgen_test_layout_nsCOMPtr_open0_nsIRunnable_close0_instantiation_3() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsCOMPtr>() , 8usize , concat !
|
assert_eq!(::std::mem::size_of::<root::nsCOMPtr>() , 8usize , concat !
|
||||||
(
|
(
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35575,7 +35717,7 @@ pub mod root {
|
||||||
) ));
|
) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_222850_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_249043_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsISupports>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsISupports>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35770,7 +35912,7 @@ pub mod root {
|
||||||
root::nsTArray<f64> ) ));
|
root::nsTArray<f64> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_224298_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_250491_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::dom::Element>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::dom::Element>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35875,7 +36017,7 @@ pub mod root {
|
||||||
root::nsRefPtrHashKey<root::nsIAtom> ) ));
|
root::nsRefPtrHashKey<root::nsIAtom> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_226686_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_252879_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::CounterStyle>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::CounterStyle>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35886,7 +36028,7 @@ pub mod root {
|
||||||
root::nsTArray<*mut root::mozilla::CounterStyle> ) ));
|
root::nsTArray<*mut root::mozilla::CounterStyle> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0_nsCOMPtr_open1_nsIRunnable_close1_close0_instantiation_1() {
|
fn __bindgen_test_layout_nsTArray_open0_nsCOMPtr_open1_nsIRunnable_close1_close0_instantiation_3() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<root::nsCOMPtr>>() ,
|
assert_eq!(::std::mem::size_of::<root::nsTArray<root::nsCOMPtr>>() ,
|
||||||
8usize , concat ! (
|
8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -35897,7 +36039,7 @@ pub mod root {
|
||||||
root::nsTArray<root::nsCOMPtr> ) ));
|
root::nsTArray<root::nsCOMPtr> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsCOMPtr_open0_nsIRunnable_close0_instantiation_2() {
|
fn __bindgen_test_layout_nsCOMPtr_open0_nsIRunnable_close0_instantiation_4() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsCOMPtr>() , 8usize , concat !
|
assert_eq!(::std::mem::size_of::<root::nsCOMPtr>() , 8usize , concat !
|
||||||
(
|
(
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -36576,7 +36718,7 @@ pub mod root {
|
||||||
root::RefPtr<root::nsStyleImageRequest> ) ));
|
root::RefPtr<root::nsStyleImageRequest> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_229163_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_255356_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsISupports>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsISupports>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -36813,7 +36955,7 @@ pub mod root {
|
||||||
root::nsCOMPtr ) ));
|
root::nsCOMPtr ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_236971_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_263164_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -36824,7 +36966,7 @@ pub mod root {
|
||||||
root::nsTArray<*mut root::nsIContent> ) ));
|
root::nsTArray<*mut root::nsIContent> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_236976_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_263169_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -36912,7 +37054,7 @@ pub mod root {
|
||||||
root::RefPtr<root::mozilla::dom::ShadowRoot> ) ));
|
root::RefPtr<root::mozilla::dom::ShadowRoot> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_237089_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_263282_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -37199,7 +37341,7 @@ pub mod root {
|
||||||
) ));
|
) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_238669_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_264862_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -37221,7 +37363,7 @@ pub mod root {
|
||||||
root::RefPtr<root::mozilla::dom::Element> ) ));
|
root::RefPtr<root::mozilla::dom::Element> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_238827_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_265020_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -37232,7 +37374,7 @@ pub mod root {
|
||||||
root::nsTArray<*mut root::nsIContent> ) ));
|
root::nsTArray<*mut root::nsIContent> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_238832_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_265025_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::nsIContent>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -37364,7 +37506,7 @@ pub mod root {
|
||||||
root::nsTArray<root::mozilla::gfx::FontVariation> ) ));
|
root::nsTArray<root::mozilla::gfx::FontVariation> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_240906_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_267099_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::css::DocumentRule>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::css::DocumentRule>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
@ -37375,7 +37517,7 @@ pub mod root {
|
||||||
root::nsTArray<*mut root::mozilla::css::DocumentRule> ) ));
|
root::nsTArray<*mut root::mozilla::css::DocumentRule> ) ));
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_240912_close0_instantiation() {
|
fn __bindgen_test_layout_nsTArray_open0__bindgen_ty_id_267105_close0_instantiation() {
|
||||||
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::css::DocumentRule>>()
|
assert_eq!(::std::mem::size_of::<root::nsTArray<*mut root::mozilla::css::DocumentRule>>()
|
||||||
, 8usize , concat ! (
|
, 8usize , concat ! (
|
||||||
"Size of template specialization: " , stringify ! (
|
"Size of template specialization: " , stringify ! (
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue