DomTypeHolder

Struct DomTypeHolder 

Source
pub(crate) struct DomTypeHolder;

Trait Implementations§

Source§

impl ANGLEInstancedArraysMethods<DomTypeHolder> for ANGLEInstancedArrays

Source§

impl AbortControllerMethods<DomTypeHolder> for AbortController

Source§

impl AbortSignalMethods<DomTypeHolder> for AbortSignal

Source§

impl AbstractRangeMethods<DomTypeHolder> for AbstractRange

Source§

impl AnalyserNodeMethods<DomTypeHolder> for AnalyserNode

Source§

fn Constructor( window: &Window, proto: Option<HandleObject<'_>>, can_gc: CanGc, context: &BaseAudioContext, options: &AnalyserOptions, ) -> Fallible<DomRoot<AnalyserNode>>

Source§

fn GetFloatFrequencyData(&self, array: CustomAutoRooterGuard<'_, Float32Array>)

Source§

fn GetByteFrequencyData(&self, array: CustomAutoRooterGuard<'_, Uint8Array>)

Source§

fn GetFloatTimeDomainData(&self, array: CustomAutoRooterGuard<'_, Float32Array>)

Source§

fn GetByteTimeDomainData(&self, array: CustomAutoRooterGuard<'_, Uint8Array>)

Source§

fn SetFftSize(&self, value: u32) -> Fallible<()>

Source§

fn FftSize(&self) -> u32

Source§

fn FrequencyBinCount(&self) -> u32

Source§

fn MinDecibels(&self) -> Finite<f64>

Source§

fn SetMinDecibels(&self, value: Finite<f64>) -> Fallible<()>

Source§

fn MaxDecibels(&self) -> Finite<f64>

Source§

fn SetMaxDecibels(&self, value: Finite<f64>) -> Fallible<()>

Source§

fn SmoothingTimeConstant(&self) -> Finite<f64>

Source§

fn SetSmoothingTimeConstant(&self, value: Finite<f64>) -> Fallible<()>

Source§

impl AnimationEventMethods<DomTypeHolder> for AnimationEvent

Source§

impl AttrMethods<DomTypeHolder> for Attr

Source§

impl AudioBufferMethods<DomTypeHolder> for AudioBuffer

Source§

impl AudioBufferSourceNodeMethods<DomTypeHolder> for AudioBufferSourceNode

Source§

fn Constructor( window: &Window, proto: Option<HandleObject<'_>>, can_gc: CanGc, context: &BaseAudioContext, options: &AudioBufferSourceOptions<DomTypeHolder>, ) -> Fallible<DomRoot<AudioBufferSourceNode>>

Source§

fn GetBuffer(&self) -> Fallible<Option<DomRoot<AudioBuffer>>>

Source§

fn SetBuffer(&self, new_buffer: Option<&AudioBuffer>) -> Fallible<()>

Source§

fn PlaybackRate(&self) -> DomRoot<AudioParam>

Source§

fn Detune(&self) -> DomRoot<AudioParam>

Source§

fn Loop(&self) -> bool

Source§

fn SetLoop(&self, should_loop: bool)

Source§

fn LoopStart(&self) -> Finite<f64>

Source§

fn SetLoopStart(&self, loop_start: Finite<f64>)

Source§

fn LoopEnd(&self) -> Finite<f64>

Source§

fn SetLoopEnd(&self, loop_end: Finite<f64>)

Source§

fn Start( &self, when: Finite<f64>, offset: Option<Finite<f64>>, duration: Option<Finite<f64>>, ) -> Fallible<()>

Source§

impl AudioContextMethods<DomTypeHolder> for AudioContext

Source§

fn Constructor( window: &Window, proto: Option<HandleObject<'_>>, can_gc: CanGc, options: &AudioContextOptions, ) -> Fallible<DomRoot<AudioContext>>

Source§

fn BaseLatency(&self) -> Finite<f64>

Source§

fn OutputLatency(&self) -> Finite<f64>

Source§

fn GetOutputTimestamp(&self) -> AudioTimestamp

Source§

fn Suspend(&self, comp: InRealm<'_>, can_gc: CanGc) -> Rc<Promise>

Source§

fn Close(&self, comp: InRealm<'_>, can_gc: CanGc) -> Rc<Promise>

Source§

fn CreateMediaElementSource( &self, media_element: &HTMLMediaElement, can_gc: CanGc, ) -> Fallible<DomRoot<MediaElementAudioSourceNode>>

Source§

fn CreateMediaStreamSource( &self, stream: &MediaStream, can_gc: CanGc, ) -> Fallible<DomRoot<MediaStreamAudioSourceNode>>

Source§

fn CreateMediaStreamTrackSource( &self, track: &MediaStreamTrack, can_gc: CanGc, ) -> Fallible<DomRoot<MediaStreamTrackAudioSourceNode>>

Source§

fn CreateMediaStreamDestination( &self, can_gc: CanGc, ) -> Fallible<DomRoot<MediaStreamAudioDestinationNode>>

Source§

impl AudioDestinationNodeMethods<DomTypeHolder> for AudioDestinationNode

Source§

impl AudioListenerMethods<DomTypeHolder> for AudioListener

Source§

impl AudioNodeMethods<DomTypeHolder> for AudioNode

Source§

fn Connect( &self, destination: &AudioNode, output: u32, input: u32, ) -> Fallible<DomRoot<AudioNode>>

Source§

fn Connect_(&self, dest: &AudioParam, output: u32) -> Fallible<()>

Source§

fn Disconnect(&self) -> ErrorResult

Source§

fn Disconnect_(&self, out: u32) -> ErrorResult

Source§

fn Disconnect__(&self, to: &AudioNode) -> ErrorResult

Source§

fn Disconnect___(&self, to: &AudioNode, out: u32) -> ErrorResult

Source§

fn Disconnect____(&self, to: &AudioNode, out: u32, inp: u32) -> ErrorResult

Source§

fn Disconnect_____(&self, param: &AudioParam) -> ErrorResult

Source§

fn Disconnect______(&self, param: &AudioParam, out: u32) -> ErrorResult

Source§

fn Context(&self) -> DomRoot<BaseAudioContext>

Source§

fn NumberOfInputs(&self) -> u32

Source§

fn NumberOfOutputs(&self) -> u32

Source§

fn ChannelCount(&self) -> u32

Source§

fn SetChannelCount(&self, value: u32) -> ErrorResult

Source§

fn ChannelCountMode(&self) -> ChannelCountMode

Source§

fn SetChannelCountMode(&self, value: ChannelCountMode) -> ErrorResult

Source§

fn ChannelInterpretation(&self) -> ChannelInterpretation

Source§

fn SetChannelInterpretation(&self, value: ChannelInterpretation) -> ErrorResult

Source§

impl AudioParamMethods<DomTypeHolder> for AudioParam

Source§

fn AutomationRate(&self) -> AutomationRate

Source§

fn SetAutomationRate(&self, automation_rate: AutomationRate) -> Fallible<()>

Source§

fn Value(&self) -> Finite<f32>

Source§

fn SetValue(&self, value: Finite<f32>)

Source§

fn DefaultValue(&self) -> Finite<f32>

Source§

fn MinValue(&self) -> Finite<f32>

Source§

fn MaxValue(&self) -> Finite<f32>

Source§

fn SetValueAtTime( &self, value: Finite<f32>, start_time: Finite<f64>, ) -> Fallible<DomRoot<AudioParam>>

Source§

fn LinearRampToValueAtTime( &self, value: Finite<f32>, end_time: Finite<f64>, ) -> Fallible<DomRoot<AudioParam>>

Source§

fn ExponentialRampToValueAtTime( &self, value: Finite<f32>, end_time: Finite<f64>, ) -> Fallible<DomRoot<AudioParam>>

Source§

fn SetTargetAtTime( &self, target: Finite<f32>, start_time: Finite<f64>, time_constant: Finite<f32>, ) -> Fallible<DomRoot<AudioParam>>

Source§

fn SetValueCurveAtTime( &self, values: Vec<Finite<f32>>, start_time: Finite<f64>, end_time: Finite<f64>, ) -> Fallible<DomRoot<AudioParam>>

Source§

fn CancelScheduledValues( &self, cancel_time: Finite<f64>, ) -> Fallible<DomRoot<AudioParam>>

Source§

fn CancelAndHoldAtTime( &self, cancel_time: Finite<f64>, ) -> Fallible<DomRoot<AudioParam>>

Source§

impl AudioScheduledSourceNodeMethods<DomTypeHolder> for AudioScheduledSourceNode

Source§

impl AudioTrackListMethods<DomTypeHolder> for AudioTrackList

Source§

impl AudioTrackMethods<DomTypeHolder> for AudioTrack

Source§

impl BaseAudioContextMethods<DomTypeHolder> for BaseAudioContext

Source§

fn SampleRate(&self) -> Finite<f32>

Source§

fn CurrentTime(&self) -> Finite<f64>

Source§

fn State(&self) -> AudioContextState

Source§

fn Resume(&self, comp: InRealm<'_>, can_gc: CanGc) -> Rc<Promise>

Source§

fn Destination(&self, can_gc: CanGc) -> DomRoot<AudioDestinationNode>

Source§

fn Listener(&self, can_gc: CanGc) -> DomRoot<AudioListener>

Source§

fn CreateOscillator(&self, can_gc: CanGc) -> Fallible<DomRoot<OscillatorNode>>

Source§

fn CreateGain(&self, can_gc: CanGc) -> Fallible<DomRoot<GainNode>>

Source§

fn CreatePanner(&self, can_gc: CanGc) -> Fallible<DomRoot<PannerNode>>

Source§

fn CreateAnalyser(&self, can_gc: CanGc) -> Fallible<DomRoot<AnalyserNode>>

Source§

fn CreateBiquadFilter( &self, can_gc: CanGc, ) -> Fallible<DomRoot<BiquadFilterNode>>

Source§

fn CreateStereoPanner( &self, can_gc: CanGc, ) -> Fallible<DomRoot<StereoPannerNode>>

Source§

fn CreateConstantSource( &self, can_gc: CanGc, ) -> Fallible<DomRoot<ConstantSourceNode>>

Source§

fn CreateChannelMerger( &self, count: u32, can_gc: CanGc, ) -> Fallible<DomRoot<ChannelMergerNode>>

Source§

fn CreateChannelSplitter( &self, count: u32, can_gc: CanGc, ) -> Fallible<DomRoot<ChannelSplitterNode>>

Source§

fn CreateBuffer( &self, number_of_channels: u32, length: u32, sample_rate: Finite<f32>, can_gc: CanGc, ) -> Fallible<DomRoot<AudioBuffer>>

Source§

fn CreateBufferSource( &self, can_gc: CanGc, ) -> Fallible<DomRoot<AudioBufferSourceNode>>

Source§

fn DecodeAudioData( &self, audio_data: CustomAutoRooterGuard<'_, ArrayBuffer>, decode_success_callback: Option<Rc<DecodeSuccessCallback<DomTypeHolder>>>, decode_error_callback: Option<Rc<DecodeErrorCallback<DomTypeHolder>>>, comp: InRealm<'_>, can_gc: CanGc, ) -> Rc<Promise>

Source§

fn CreateIIRFilter( &self, feedforward: Vec<Finite<f64>>, feedback: Vec<Finite<f64>>, can_gc: CanGc, ) -> Fallible<DomRoot<IIRFilterNode>>

Source§

fn GetOnstatechange(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnstatechange( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

impl BeforeUnloadEventMethods<DomTypeHolder> for BeforeUnloadEvent

Source§

impl BiquadFilterNodeMethods<DomTypeHolder> for BiquadFilterNode

Source§

impl BlobMethods<DomTypeHolder> for Blob

Source§

impl BluetoothAdvertisingEventMethods<DomTypeHolder> for BluetoothAdvertisingEvent

Source§

impl BluetoothCharacteristicPropertiesMethods<DomTypeHolder> for BluetoothCharacteristicProperties

Source§

impl BluetoothDeviceMethods<DomTypeHolder> for BluetoothDevice

Source§

impl BluetoothMethods<DomTypeHolder> for Bluetooth

Source§

impl BluetoothPermissionResultMethods<DomTypeHolder> for BluetoothPermissionResult

Source§

impl BluetoothRemoteGATTCharacteristicMethods<DomTypeHolder> for BluetoothRemoteGATTCharacteristic

Source§

fn Properties(&self) -> DomRoot<BluetoothCharacteristicProperties>

Source§

fn Service(&self) -> DomRoot<BluetoothRemoteGATTService>

Source§

fn Uuid(&self) -> DOMString

Source§

fn GetDescriptor( &self, descriptor: StringOrUnsignedLong, can_gc: CanGc, ) -> Rc<Promise>

Source§

fn GetDescriptors( &self, descriptor: Option<StringOrUnsignedLong>, can_gc: CanGc, ) -> Rc<Promise>

Source§

fn GetValue(&self) -> Option<ByteString>

Source§

fn ReadValue(&self, comp: InRealm<'_>, can_gc: CanGc) -> Rc<Promise>

Source§

fn WriteValue( &self, value: ArrayBufferViewOrArrayBuffer, comp: InRealm<'_>, can_gc: CanGc, ) -> Rc<Promise>

Source§

fn StartNotifications(&self, comp: InRealm<'_>, can_gc: CanGc) -> Rc<Promise>

Source§

fn StopNotifications(&self, comp: InRealm<'_>, can_gc: CanGc) -> Rc<Promise>

Source§

fn GetOncharacteristicvaluechanged( &self, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncharacteristicvaluechanged( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

impl BluetoothRemoteGATTDescriptorMethods<DomTypeHolder> for BluetoothRemoteGATTDescriptor

Source§

impl BluetoothRemoteGATTServerMethods<DomTypeHolder> for BluetoothRemoteGATTServer

Source§

impl BluetoothRemoteGATTServiceMethods<DomTypeHolder> for BluetoothRemoteGATTService

Source§

fn Device(&self) -> DomRoot<BluetoothDevice>

Source§

fn IsPrimary(&self) -> bool

Source§

fn Uuid(&self) -> DOMString

Source§

fn GetCharacteristic( &self, characteristic: StringOrUnsignedLong, can_gc: CanGc, ) -> Rc<Promise>

Source§

fn GetCharacteristics( &self, characteristic: Option<StringOrUnsignedLong>, can_gc: CanGc, ) -> Rc<Promise>

Source§

fn GetIncludedService( &self, service: StringOrUnsignedLong, can_gc: CanGc, ) -> Rc<Promise>

Source§

fn GetIncludedServices( &self, service: Option<StringOrUnsignedLong>, can_gc: CanGc, ) -> Rc<Promise>

Source§

fn GetOnserviceadded(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnserviceadded( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnservicechanged(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnservicechanged( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnserviceremoved(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnserviceremoved( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

impl BluetoothUUIDMethods<DomTypeHolder> for BluetoothUUID

Source§

impl BroadcastChannelMethods<DomTypeHolder> for BroadcastChannel

Source§

impl ByteLengthQueuingStrategyMethods<DomTypeHolder> for ByteLengthQueuingStrategy

Source§

impl CSSConditionRuleMethods<DomTypeHolder> for CSSConditionRule

Source§

impl CSSGroupingRuleMethods<DomTypeHolder> for CSSGroupingRule

Source§

impl CSSImportRuleMethods<DomTypeHolder> for CSSImportRule

Source§

impl CSSKeyframeRuleMethods<DomTypeHolder> for CSSKeyframeRule

Source§

impl CSSKeyframesRuleMethods<DomTypeHolder> for CSSKeyframesRule

Source§

impl CSSLayerBlockRuleMethods<DomTypeHolder> for CSSLayerBlockRule

Source§

impl CSSLayerStatementRuleMethods<DomTypeHolder> for CSSLayerStatementRule

Source§

impl CSSMediaRuleMethods<DomTypeHolder> for CSSMediaRule

Source§

impl CSSMethods<DomTypeHolder> for CSS

Source§

impl CSSNamespaceRuleMethods<DomTypeHolder> for CSSNamespaceRule

Source§

impl CSSNestedDeclarationsMethods<DomTypeHolder> for CSSNestedDeclarations

Source§

impl CSSRuleListMethods<DomTypeHolder> for CSSRuleList

Source§

impl CSSRuleMethods<DomTypeHolder> for CSSRule

Source§

impl CSSStyleDeclarationMethods<DomTypeHolder> for CSSStyleDeclaration

Source§

fn Length(&self) -> u32

Source§

fn Item(&self, index: u32) -> DOMString

Source§

fn GetPropertyValue(&self, property: DOMString) -> DOMString

Source§

fn GetPropertyPriority(&self, property: DOMString) -> DOMString

Source§

fn SetProperty( &self, property: DOMString, value: DOMString, priority: DOMString, can_gc: CanGc, ) -> ErrorResult

Source§

fn RemoveProperty( &self, property: DOMString, can_gc: CanGc, ) -> Fallible<DOMString>

Source§

fn CssFloat(&self) -> DOMString

Source§

fn SetCssFloat(&self, value: DOMString, can_gc: CanGc) -> ErrorResult

Source§

fn IndexedGetter(&self, index: u32) -> Option<DOMString>

Source§

fn CssText(&self) -> DOMString

Source§

fn SetCssText(&self, value: DOMString, can_gc: CanGc) -> ErrorResult

Source§

fn Align_items(&self) -> DOMString

Source§

fn SetAlign_items(&self, value: DOMString) -> ErrorResult

Source§

fn AlignItems(&self) -> DOMString

Source§

fn SetAlignItems(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_align_items(&self) -> DOMString

Source§

fn Set_webkit_align_items(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitAlignItems(&self) -> DOMString

Source§

fn SetWebkitAlignItems(&self, value: DOMString) -> ErrorResult

Source§

fn Aspect_ratio(&self) -> DOMString

Source§

fn SetAspect_ratio(&self, value: DOMString) -> ErrorResult

Source§

fn AspectRatio(&self) -> DOMString

Source§

fn SetAspectRatio(&self, value: DOMString) -> ErrorResult

Source§

fn Backface_visibility(&self) -> DOMString

Source§

fn SetBackface_visibility(&self, value: DOMString) -> ErrorResult

Source§

fn BackfaceVisibility(&self) -> DOMString

Source§

fn SetBackfaceVisibility(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_backface_visibility(&self) -> DOMString

Source§

fn Set_moz_backface_visibility(&self, value: DOMString) -> ErrorResult

Source§

fn MozBackfaceVisibility(&self) -> DOMString

Source§

fn SetMozBackfaceVisibility(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_backface_visibility(&self) -> DOMString

Source§

fn Set_webkit_backface_visibility(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitBackfaceVisibility(&self) -> DOMString

Source§

fn SetWebkitBackfaceVisibility(&self, value: DOMString) -> ErrorResult

Source§

fn Baseline_source(&self) -> DOMString

Source§

fn SetBaseline_source(&self, value: DOMString) -> ErrorResult

Source§

fn BaselineSource(&self) -> DOMString

Source§

fn SetBaselineSource(&self, value: DOMString) -> ErrorResult

Source§

fn Border_collapse(&self) -> DOMString

Source§

fn SetBorder_collapse(&self, value: DOMString) -> ErrorResult

Source§

fn BorderCollapse(&self) -> DOMString

Source§

fn SetBorderCollapse(&self, value: DOMString) -> ErrorResult

Source§

fn Border_image_repeat(&self) -> DOMString

Source§

fn SetBorder_image_repeat(&self, value: DOMString) -> ErrorResult

Source§

fn BorderImageRepeat(&self) -> DOMString

Source§

fn SetBorderImageRepeat(&self, value: DOMString) -> ErrorResult

Source§

fn Box_sizing(&self) -> DOMString

Source§

fn SetBox_sizing(&self, value: DOMString) -> ErrorResult

Source§

fn BoxSizing(&self) -> DOMString

Source§

fn SetBoxSizing(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_box_sizing(&self) -> DOMString

Source§

fn Set_moz_box_sizing(&self, value: DOMString) -> ErrorResult

Source§

fn MozBoxSizing(&self) -> DOMString

Source§

fn SetMozBoxSizing(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_box_sizing(&self) -> DOMString

Source§

fn Set_webkit_box_sizing(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitBoxSizing(&self) -> DOMString

Source§

fn SetWebkitBoxSizing(&self, value: DOMString) -> ErrorResult

Source§

fn Caption_side(&self) -> DOMString

Source§

fn SetCaption_side(&self, value: DOMString) -> ErrorResult

Source§

fn CaptionSide(&self) -> DOMString

Source§

fn SetCaptionSide(&self, value: DOMString) -> ErrorResult

Source§

fn Clear(&self) -> DOMString

Source§

fn SetClear(&self, value: DOMString) -> ErrorResult

Source§

fn Column_count(&self) -> DOMString

Source§

fn SetColumn_count(&self, value: DOMString) -> ErrorResult

Source§

fn ColumnCount(&self) -> DOMString

Source§

fn SetColumnCount(&self, value: DOMString) -> ErrorResult

Source§

fn Column_span(&self) -> DOMString

Source§

fn SetColumn_span(&self, value: DOMString) -> ErrorResult

Source§

fn ColumnSpan(&self) -> DOMString

Source§

fn SetColumnSpan(&self, value: DOMString) -> ErrorResult

Source§

fn Contain(&self) -> DOMString

Source§

fn SetContain(&self, value: DOMString) -> ErrorResult

Source§

fn Container_type(&self) -> DOMString

Source§

fn SetContainer_type(&self, value: DOMString) -> ErrorResult

Source§

fn ContainerType(&self) -> DOMString

Source§

fn SetContainerType(&self, value: DOMString) -> ErrorResult

Source§

fn Direction(&self) -> DOMString

Source§

fn SetDirection(&self, value: DOMString) -> ErrorResult

Source§

fn Display(&self) -> DOMString

Source§

fn SetDisplay(&self, value: DOMString) -> ErrorResult

Source§

fn Empty_cells(&self) -> DOMString

Source§

fn SetEmpty_cells(&self, value: DOMString) -> ErrorResult

Source§

fn EmptyCells(&self) -> DOMString

Source§

fn SetEmptyCells(&self, value: DOMString) -> ErrorResult

Source§

fn Flex_direction(&self) -> DOMString

Source§

fn SetFlex_direction(&self, value: DOMString) -> ErrorResult

Source§

fn FlexDirection(&self) -> DOMString

Source§

fn SetFlexDirection(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_flex_direction(&self) -> DOMString

Source§

fn Set_webkit_flex_direction(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitFlexDirection(&self) -> DOMString

Source§

fn SetWebkitFlexDirection(&self, value: DOMString) -> ErrorResult

Source§

fn Flex_wrap(&self) -> DOMString

Source§

fn SetFlex_wrap(&self, value: DOMString) -> ErrorResult

Source§

fn FlexWrap(&self) -> DOMString

Source§

fn SetFlexWrap(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_flex_wrap(&self) -> DOMString

Source§

fn Set_webkit_flex_wrap(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitFlexWrap(&self) -> DOMString

Source§

fn SetWebkitFlexWrap(&self, value: DOMString) -> ErrorResult

Source§

fn Float(&self) -> DOMString

Source§

fn SetFloat(&self, value: DOMString) -> ErrorResult

Source§

fn Font_language_override(&self) -> DOMString

Source§

fn SetFont_language_override(&self, value: DOMString) -> ErrorResult

Source§

fn FontLanguageOverride(&self) -> DOMString

Source§

fn SetFontLanguageOverride(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_font_language_override(&self) -> DOMString

Source§

fn Set_moz_font_language_override(&self, value: DOMString) -> ErrorResult

Source§

fn MozFontLanguageOverride(&self) -> DOMString

Source§

fn SetMozFontLanguageOverride(&self, value: DOMString) -> ErrorResult

Source§

fn Font_optical_sizing(&self) -> DOMString

Source§

fn SetFont_optical_sizing(&self, value: DOMString) -> ErrorResult

Source§

fn FontOpticalSizing(&self) -> DOMString

Source§

fn SetFontOpticalSizing(&self, value: DOMString) -> ErrorResult

Source§

fn Font_stretch(&self) -> DOMString

Source§

fn SetFont_stretch(&self, value: DOMString) -> ErrorResult

Source§

fn FontStretch(&self) -> DOMString

Source§

fn SetFontStretch(&self, value: DOMString) -> ErrorResult

Source§

fn Font_style(&self) -> DOMString

Source§

fn SetFont_style(&self, value: DOMString) -> ErrorResult

Source§

fn FontStyle(&self) -> DOMString

Source§

fn SetFontStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Font_synthesis_weight(&self) -> DOMString

Source§

fn SetFont_synthesis_weight(&self, value: DOMString) -> ErrorResult

Source§

fn FontSynthesisWeight(&self) -> DOMString

Source§

fn SetFontSynthesisWeight(&self, value: DOMString) -> ErrorResult

Source§

fn Font_variant_caps(&self) -> DOMString

Source§

fn SetFont_variant_caps(&self, value: DOMString) -> ErrorResult

Source§

fn FontVariantCaps(&self) -> DOMString

Source§

fn SetFontVariantCaps(&self, value: DOMString) -> ErrorResult

Source§

fn Font_weight(&self) -> DOMString

Source§

fn SetFont_weight(&self, value: DOMString) -> ErrorResult

Source§

fn FontWeight(&self) -> DOMString

Source§

fn SetFontWeight(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_auto_flow(&self) -> DOMString

Source§

fn SetGrid_auto_flow(&self, value: DOMString) -> ErrorResult

Source§

fn GridAutoFlow(&self) -> DOMString

Source§

fn SetGridAutoFlow(&self, value: DOMString) -> ErrorResult

Source§

fn Image_rendering(&self) -> DOMString

Source§

fn SetImage_rendering(&self, value: DOMString) -> ErrorResult

Source§

fn ImageRendering(&self) -> DOMString

Source§

fn SetImageRendering(&self, value: DOMString) -> ErrorResult

Source§

fn Isolation(&self) -> DOMString

Source§

fn SetIsolation(&self, value: DOMString) -> ErrorResult

Source§

fn Justify_items(&self) -> DOMString

Source§

fn SetJustify_items(&self, value: DOMString) -> ErrorResult

Source§

fn JustifyItems(&self) -> DOMString

Source§

fn SetJustifyItems(&self, value: DOMString) -> ErrorResult

Source§

fn List_style_position(&self) -> DOMString

Source§

fn SetList_style_position(&self, value: DOMString) -> ErrorResult

Source§

fn ListStylePosition(&self) -> DOMString

Source§

fn SetListStylePosition(&self, value: DOMString) -> ErrorResult

Source§

fn List_style_type(&self) -> DOMString

Source§

fn SetList_style_type(&self, value: DOMString) -> ErrorResult

Source§

fn ListStyleType(&self) -> DOMString

Source§

fn SetListStyleType(&self, value: DOMString) -> ErrorResult

Source§

fn Mix_blend_mode(&self) -> DOMString

Source§

fn SetMix_blend_mode(&self, value: DOMString) -> ErrorResult

Source§

fn MixBlendMode(&self) -> DOMString

Source§

fn SetMixBlendMode(&self, value: DOMString) -> ErrorResult

Source§

fn Object_fit(&self) -> DOMString

Source§

fn SetObject_fit(&self, value: DOMString) -> ErrorResult

Source§

fn ObjectFit(&self) -> DOMString

Source§

fn SetObjectFit(&self, value: DOMString) -> ErrorResult

Source§

fn Opacity(&self) -> DOMString

Source§

fn SetOpacity(&self, value: DOMString) -> ErrorResult

Source§

fn Order(&self) -> DOMString

Source§

fn SetOrder(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_order(&self) -> DOMString

Source§

fn Set_webkit_order(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitOrder(&self) -> DOMString

Source§

fn SetWebkitOrder(&self, value: DOMString) -> ErrorResult

Source§

fn Outline_style(&self) -> DOMString

Source§

fn SetOutline_style(&self, value: DOMString) -> ErrorResult

Source§

fn OutlineStyle(&self) -> DOMString

Source§

fn SetOutlineStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Overflow_wrap(&self) -> DOMString

Source§

fn SetOverflow_wrap(&self, value: DOMString) -> ErrorResult

Source§

fn OverflowWrap(&self) -> DOMString

Source§

fn SetOverflowWrap(&self, value: DOMString) -> ErrorResult

Source§

fn Word_wrap(&self) -> DOMString

Source§

fn SetWord_wrap(&self, value: DOMString) -> ErrorResult

Source§

fn WordWrap(&self) -> DOMString

Source§

fn SetWordWrap(&self, value: DOMString) -> ErrorResult

Source§

fn Pointer_events(&self) -> DOMString

Source§

fn SetPointer_events(&self, value: DOMString) -> ErrorResult

Source§

fn PointerEvents(&self) -> DOMString

Source§

fn SetPointerEvents(&self, value: DOMString) -> ErrorResult

Source§

fn Position(&self) -> DOMString

Source§

fn SetPosition(&self, value: DOMString) -> ErrorResult

Source§

fn Position_area(&self) -> DOMString

Source§

fn SetPosition_area(&self, value: DOMString) -> ErrorResult

Source§

fn PositionArea(&self) -> DOMString

Source§

fn SetPositionArea(&self, value: DOMString) -> ErrorResult

Source§

fn Table_layout(&self) -> DOMString

Source§

fn SetTable_layout(&self, value: DOMString) -> ErrorResult

Source§

fn TableLayout(&self) -> DOMString

Source§

fn SetTableLayout(&self, value: DOMString) -> ErrorResult

Source§

fn Text_align(&self) -> DOMString

Source§

fn SetText_align(&self, value: DOMString) -> ErrorResult

Source§

fn TextAlign(&self) -> DOMString

Source§

fn SetTextAlign(&self, value: DOMString) -> ErrorResult

Source§

fn Text_align_last(&self) -> DOMString

Source§

fn SetText_align_last(&self, value: DOMString) -> ErrorResult

Source§

fn TextAlignLast(&self) -> DOMString

Source§

fn SetTextAlignLast(&self, value: DOMString) -> ErrorResult

Source§

fn Text_decoration_line(&self) -> DOMString

Source§

fn SetText_decoration_line(&self, value: DOMString) -> ErrorResult

Source§

fn TextDecorationLine(&self) -> DOMString

Source§

fn SetTextDecorationLine(&self, value: DOMString) -> ErrorResult

Source§

fn Text_decoration_style(&self) -> DOMString

Source§

fn SetText_decoration_style(&self, value: DOMString) -> ErrorResult

Source§

fn TextDecorationStyle(&self) -> DOMString

Source§

fn SetTextDecorationStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Text_justify(&self) -> DOMString

Source§

fn SetText_justify(&self, value: DOMString) -> ErrorResult

Source§

fn TextJustify(&self) -> DOMString

Source§

fn SetTextJustify(&self, value: DOMString) -> ErrorResult

Source§

fn Text_rendering(&self) -> DOMString

Source§

fn SetText_rendering(&self, value: DOMString) -> ErrorResult

Source§

fn TextRendering(&self) -> DOMString

Source§

fn SetTextRendering(&self, value: DOMString) -> ErrorResult

Source§

fn Text_transform(&self) -> DOMString

Source§

fn SetText_transform(&self, value: DOMString) -> ErrorResult

Source§

fn TextTransform(&self) -> DOMString

Source§

fn SetTextTransform(&self, value: DOMString) -> ErrorResult

Source§

fn Text_wrap_mode(&self) -> DOMString

Source§

fn SetText_wrap_mode(&self, value: DOMString) -> ErrorResult

Source§

fn TextWrapMode(&self) -> DOMString

Source§

fn SetTextWrapMode(&self, value: DOMString) -> ErrorResult

Source§

fn Transform_style(&self) -> DOMString

Source§

fn SetTransform_style(&self, value: DOMString) -> ErrorResult

Source§

fn TransformStyle(&self) -> DOMString

Source§

fn SetTransformStyle(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_transform_style(&self) -> DOMString

Source§

fn Set_moz_transform_style(&self, value: DOMString) -> ErrorResult

Source§

fn MozTransformStyle(&self) -> DOMString

Source§

fn SetMozTransformStyle(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_transform_style(&self) -> DOMString

Source§

fn Set_webkit_transform_style(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitTransformStyle(&self) -> DOMString

Source§

fn SetWebkitTransformStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Unicode_bidi(&self) -> DOMString

Source§

fn SetUnicode_bidi(&self, value: DOMString) -> ErrorResult

Source§

fn UnicodeBidi(&self) -> DOMString

Source§

fn SetUnicodeBidi(&self, value: DOMString) -> ErrorResult

Source§

fn Visibility(&self) -> DOMString

Source§

fn SetVisibility(&self, value: DOMString) -> ErrorResult

Source§

fn White_space_collapse(&self) -> DOMString

Source§

fn SetWhite_space_collapse(&self, value: DOMString) -> ErrorResult

Source§

fn WhiteSpaceCollapse(&self) -> DOMString

Source§

fn SetWhiteSpaceCollapse(&self, value: DOMString) -> ErrorResult

Source§

fn Word_break(&self) -> DOMString

Source§

fn SetWord_break(&self, value: DOMString) -> ErrorResult

Source§

fn WordBreak(&self) -> DOMString

Source§

fn SetWordBreak(&self, value: DOMString) -> ErrorResult

Source§

fn Writing_mode(&self) -> DOMString

Source§

fn SetWriting_mode(&self, value: DOMString) -> ErrorResult

Source§

fn WritingMode(&self) -> DOMString

Source§

fn SetWritingMode(&self, value: DOMString) -> ErrorResult

Source§

fn Z_index(&self) -> DOMString

Source§

fn SetZ_index(&self, value: DOMString) -> ErrorResult

Source§

fn ZIndex(&self) -> DOMString

Source§

fn SetZIndex(&self, value: DOMString) -> ErrorResult

Source§

fn Align_content(&self) -> DOMString

Source§

fn SetAlign_content(&self, value: DOMString) -> ErrorResult

Source§

fn AlignContent(&self) -> DOMString

Source§

fn SetAlignContent(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_align_content(&self) -> DOMString

Source§

fn Set_webkit_align_content(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitAlignContent(&self) -> DOMString

Source§

fn SetWebkitAlignContent(&self, value: DOMString) -> ErrorResult

Source§

fn Justify_content(&self) -> DOMString

Source§

fn SetJustify_content(&self, value: DOMString) -> ErrorResult

Source§

fn JustifyContent(&self) -> DOMString

Source§

fn SetJustifyContent(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_justify_content(&self) -> DOMString

Source§

fn Set_webkit_justify_content(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitJustifyContent(&self) -> DOMString

Source§

fn SetWebkitJustifyContent(&self, value: DOMString) -> ErrorResult

Source§

fn Flex_grow(&self) -> DOMString

Source§

fn SetFlex_grow(&self, value: DOMString) -> ErrorResult

Source§

fn FlexGrow(&self) -> DOMString

Source§

fn SetFlexGrow(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_flex_grow(&self) -> DOMString

Source§

fn Set_webkit_flex_grow(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitFlexGrow(&self) -> DOMString

Source§

fn SetWebkitFlexGrow(&self, value: DOMString) -> ErrorResult

Source§

fn Flex_shrink(&self) -> DOMString

Source§

fn SetFlex_shrink(&self, value: DOMString) -> ErrorResult

Source§

fn FlexShrink(&self) -> DOMString

Source§

fn SetFlexShrink(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_flex_shrink(&self) -> DOMString

Source§

fn Set_webkit_flex_shrink(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitFlexShrink(&self) -> DOMString

Source§

fn SetWebkitFlexShrink(&self, value: DOMString) -> ErrorResult

Source§

fn Align_self(&self) -> DOMString

Source§

fn SetAlign_self(&self, value: DOMString) -> ErrorResult

Source§

fn AlignSelf(&self) -> DOMString

Source§

fn SetAlignSelf(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_align_self(&self) -> DOMString

Source§

fn Set_webkit_align_self(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitAlignSelf(&self) -> DOMString

Source§

fn SetWebkitAlignSelf(&self, value: DOMString) -> ErrorResult

Source§

fn Justify_self(&self) -> DOMString

Source§

fn SetJustify_self(&self, value: DOMString) -> ErrorResult

Source§

fn JustifySelf(&self) -> DOMString

Source§

fn SetJustifySelf(&self, value: DOMString) -> ErrorResult

Source§

fn Overflow_block(&self) -> DOMString

Source§

fn SetOverflow_block(&self, value: DOMString) -> ErrorResult

Source§

fn OverflowBlock(&self) -> DOMString

Source§

fn SetOverflowBlock(&self, value: DOMString) -> ErrorResult

Source§

fn Overflow_inline(&self) -> DOMString

Source§

fn SetOverflow_inline(&self, value: DOMString) -> ErrorResult

Source§

fn OverflowInline(&self) -> DOMString

Source§

fn SetOverflowInline(&self, value: DOMString) -> ErrorResult

Source§

fn Overflow_x(&self) -> DOMString

Source§

fn SetOverflow_x(&self, value: DOMString) -> ErrorResult

Source§

fn OverflowX(&self) -> DOMString

Source§

fn SetOverflowX(&self, value: DOMString) -> ErrorResult

Source§

fn Overflow_y(&self) -> DOMString

Source§

fn SetOverflow_y(&self, value: DOMString) -> ErrorResult

Source§

fn OverflowY(&self) -> DOMString

Source§

fn SetOverflowY(&self, value: DOMString) -> ErrorResult

Source§

fn Border_block_end_style(&self) -> DOMString

Source§

fn SetBorder_block_end_style(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBlockEndStyle(&self) -> DOMString

Source§

fn SetBorderBlockEndStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Border_block_start_style(&self) -> DOMString

Source§

fn SetBorder_block_start_style(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBlockStartStyle(&self) -> DOMString

Source§

fn SetBorderBlockStartStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Border_bottom_style(&self) -> DOMString

Source§

fn SetBorder_bottom_style(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBottomStyle(&self) -> DOMString

Source§

fn SetBorderBottomStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Border_inline_end_style(&self) -> DOMString

Source§

fn SetBorder_inline_end_style(&self, value: DOMString) -> ErrorResult

Source§

fn BorderInlineEndStyle(&self) -> DOMString

Source§

fn SetBorderInlineEndStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Border_inline_start_style(&self) -> DOMString

Source§

fn SetBorder_inline_start_style(&self, value: DOMString) -> ErrorResult

Source§

fn BorderInlineStartStyle(&self) -> DOMString

Source§

fn SetBorderInlineStartStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Border_left_style(&self) -> DOMString

Source§

fn SetBorder_left_style(&self, value: DOMString) -> ErrorResult

Source§

fn BorderLeftStyle(&self) -> DOMString

Source§

fn SetBorderLeftStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Border_right_style(&self) -> DOMString

Source§

fn SetBorder_right_style(&self, value: DOMString) -> ErrorResult

Source§

fn BorderRightStyle(&self) -> DOMString

Source§

fn SetBorderRightStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Border_top_style(&self) -> DOMString

Source§

fn SetBorder_top_style(&self, value: DOMString) -> ErrorResult

Source§

fn BorderTopStyle(&self) -> DOMString

Source§

fn SetBorderTopStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Animation_composition(&self) -> DOMString

Source§

fn SetAnimation_composition(&self, value: DOMString) -> ErrorResult

Source§

fn AnimationComposition(&self) -> DOMString

Source§

fn SetAnimationComposition(&self, value: DOMString) -> ErrorResult

Source§

fn Animation_delay(&self) -> DOMString

Source§

fn SetAnimation_delay(&self, value: DOMString) -> ErrorResult

Source§

fn AnimationDelay(&self) -> DOMString

Source§

fn SetAnimationDelay(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_animation_delay(&self) -> DOMString

Source§

fn Set_moz_animation_delay(&self, value: DOMString) -> ErrorResult

Source§

fn MozAnimationDelay(&self) -> DOMString

Source§

fn SetMozAnimationDelay(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_animation_delay(&self) -> DOMString

Source§

fn Set_webkit_animation_delay(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitAnimationDelay(&self) -> DOMString

Source§

fn SetWebkitAnimationDelay(&self, value: DOMString) -> ErrorResult

Source§

fn Animation_direction(&self) -> DOMString

Source§

fn SetAnimation_direction(&self, value: DOMString) -> ErrorResult

Source§

fn AnimationDirection(&self) -> DOMString

Source§

fn SetAnimationDirection(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_animation_direction(&self) -> DOMString

Source§

fn Set_moz_animation_direction(&self, value: DOMString) -> ErrorResult

Source§

fn MozAnimationDirection(&self) -> DOMString

Source§

fn SetMozAnimationDirection(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_animation_direction(&self) -> DOMString

Source§

fn Set_webkit_animation_direction(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitAnimationDirection(&self) -> DOMString

Source§

fn SetWebkitAnimationDirection(&self, value: DOMString) -> ErrorResult

Source§

fn Animation_duration(&self) -> DOMString

Source§

fn SetAnimation_duration(&self, value: DOMString) -> ErrorResult

Source§

fn AnimationDuration(&self) -> DOMString

Source§

fn SetAnimationDuration(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_animation_duration(&self) -> DOMString

Source§

fn Set_moz_animation_duration(&self, value: DOMString) -> ErrorResult

Source§

fn MozAnimationDuration(&self) -> DOMString

Source§

fn SetMozAnimationDuration(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_animation_duration(&self) -> DOMString

Source§

fn Set_webkit_animation_duration(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitAnimationDuration(&self) -> DOMString

Source§

fn SetWebkitAnimationDuration(&self, value: DOMString) -> ErrorResult

Source§

fn Animation_fill_mode(&self) -> DOMString

Source§

fn SetAnimation_fill_mode(&self, value: DOMString) -> ErrorResult

Source§

fn AnimationFillMode(&self) -> DOMString

Source§

fn SetAnimationFillMode(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_animation_fill_mode(&self) -> DOMString

Source§

fn Set_moz_animation_fill_mode(&self, value: DOMString) -> ErrorResult

Source§

fn MozAnimationFillMode(&self) -> DOMString

Source§

fn SetMozAnimationFillMode(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_animation_fill_mode(&self) -> DOMString

Source§

fn Set_webkit_animation_fill_mode(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitAnimationFillMode(&self) -> DOMString

Source§

fn SetWebkitAnimationFillMode(&self, value: DOMString) -> ErrorResult

Source§

fn Animation_iteration_count(&self) -> DOMString

Source§

fn SetAnimation_iteration_count(&self, value: DOMString) -> ErrorResult

Source§

fn AnimationIterationCount(&self) -> DOMString

Source§

fn SetAnimationIterationCount(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_animation_iteration_count(&self) -> DOMString

Source§

fn Set_moz_animation_iteration_count(&self, value: DOMString) -> ErrorResult

Source§

fn MozAnimationIterationCount(&self) -> DOMString

Source§

fn SetMozAnimationIterationCount(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_animation_iteration_count(&self) -> DOMString

Source§

fn Set_webkit_animation_iteration_count(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitAnimationIterationCount(&self) -> DOMString

Source§

fn SetWebkitAnimationIterationCount(&self, value: DOMString) -> ErrorResult

Source§

fn Animation_name(&self) -> DOMString

Source§

fn SetAnimation_name(&self, value: DOMString) -> ErrorResult

Source§

fn AnimationName(&self) -> DOMString

Source§

fn SetAnimationName(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_animation_name(&self) -> DOMString

Source§

fn Set_moz_animation_name(&self, value: DOMString) -> ErrorResult

Source§

fn MozAnimationName(&self) -> DOMString

Source§

fn SetMozAnimationName(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_animation_name(&self) -> DOMString

Source§

fn Set_webkit_animation_name(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitAnimationName(&self) -> DOMString

Source§

fn SetWebkitAnimationName(&self, value: DOMString) -> ErrorResult

Source§

fn Animation_play_state(&self) -> DOMString

Source§

fn SetAnimation_play_state(&self, value: DOMString) -> ErrorResult

Source§

fn AnimationPlayState(&self) -> DOMString

Source§

fn SetAnimationPlayState(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_animation_play_state(&self) -> DOMString

Source§

fn Set_moz_animation_play_state(&self, value: DOMString) -> ErrorResult

Source§

fn MozAnimationPlayState(&self) -> DOMString

Source§

fn SetMozAnimationPlayState(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_animation_play_state(&self) -> DOMString

Source§

fn Set_webkit_animation_play_state(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitAnimationPlayState(&self) -> DOMString

Source§

fn SetWebkitAnimationPlayState(&self, value: DOMString) -> ErrorResult

Source§

fn Animation_timeline(&self) -> DOMString

Source§

fn SetAnimation_timeline(&self, value: DOMString) -> ErrorResult

Source§

fn AnimationTimeline(&self) -> DOMString

Source§

fn SetAnimationTimeline(&self, value: DOMString) -> ErrorResult

Source§

fn Animation_timing_function(&self) -> DOMString

Source§

fn SetAnimation_timing_function(&self, value: DOMString) -> ErrorResult

Source§

fn AnimationTimingFunction(&self) -> DOMString

Source§

fn SetAnimationTimingFunction(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_animation_timing_function(&self) -> DOMString

Source§

fn Set_moz_animation_timing_function(&self, value: DOMString) -> ErrorResult

Source§

fn MozAnimationTimingFunction(&self) -> DOMString

Source§

fn SetMozAnimationTimingFunction(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_animation_timing_function(&self) -> DOMString

Source§

fn Set_webkit_animation_timing_function(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitAnimationTimingFunction(&self) -> DOMString

Source§

fn SetWebkitAnimationTimingFunction(&self, value: DOMString) -> ErrorResult

Source§

fn Backdrop_filter(&self) -> DOMString

Source§

fn SetBackdrop_filter(&self, value: DOMString) -> ErrorResult

Source§

fn BackdropFilter(&self) -> DOMString

Source§

fn SetBackdropFilter(&self, value: DOMString) -> ErrorResult

Source§

fn Background_attachment(&self) -> DOMString

Source§

fn SetBackground_attachment(&self, value: DOMString) -> ErrorResult

Source§

fn BackgroundAttachment(&self) -> DOMString

Source§

fn SetBackgroundAttachment(&self, value: DOMString) -> ErrorResult

Source§

fn Background_clip(&self) -> DOMString

Source§

fn SetBackground_clip(&self, value: DOMString) -> ErrorResult

Source§

fn BackgroundClip(&self) -> DOMString

Source§

fn SetBackgroundClip(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_background_clip(&self) -> DOMString

Source§

fn Set_webkit_background_clip(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitBackgroundClip(&self) -> DOMString

Source§

fn SetWebkitBackgroundClip(&self, value: DOMString) -> ErrorResult

Source§

fn Background_image(&self) -> DOMString

Source§

fn SetBackground_image(&self, value: DOMString) -> ErrorResult

Source§

fn BackgroundImage(&self) -> DOMString

Source§

fn SetBackgroundImage(&self, value: DOMString) -> ErrorResult

Source§

fn Background_origin(&self) -> DOMString

Source§

fn SetBackground_origin(&self, value: DOMString) -> ErrorResult

Source§

fn BackgroundOrigin(&self) -> DOMString

Source§

fn SetBackgroundOrigin(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_background_origin(&self) -> DOMString

Source§

fn Set_webkit_background_origin(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitBackgroundOrigin(&self) -> DOMString

Source§

fn SetWebkitBackgroundOrigin(&self, value: DOMString) -> ErrorResult

Source§

fn Background_position_x(&self) -> DOMString

Source§

fn SetBackground_position_x(&self, value: DOMString) -> ErrorResult

Source§

fn BackgroundPositionX(&self) -> DOMString

Source§

fn SetBackgroundPositionX(&self, value: DOMString) -> ErrorResult

Source§

fn Background_position_y(&self) -> DOMString

Source§

fn SetBackground_position_y(&self, value: DOMString) -> ErrorResult

Source§

fn BackgroundPositionY(&self) -> DOMString

Source§

fn SetBackgroundPositionY(&self, value: DOMString) -> ErrorResult

Source§

fn Background_repeat(&self) -> DOMString

Source§

fn SetBackground_repeat(&self, value: DOMString) -> ErrorResult

Source§

fn BackgroundRepeat(&self) -> DOMString

Source§

fn SetBackgroundRepeat(&self, value: DOMString) -> ErrorResult

Source§

fn Background_size(&self) -> DOMString

Source§

fn SetBackground_size(&self, value: DOMString) -> ErrorResult

Source§

fn BackgroundSize(&self) -> DOMString

Source§

fn SetBackgroundSize(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_background_size(&self) -> DOMString

Source§

fn Set_webkit_background_size(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitBackgroundSize(&self) -> DOMString

Source§

fn SetWebkitBackgroundSize(&self, value: DOMString) -> ErrorResult

Source§

fn Border_image_outset(&self) -> DOMString

Source§

fn SetBorder_image_outset(&self, value: DOMString) -> ErrorResult

Source§

fn BorderImageOutset(&self) -> DOMString

Source§

fn SetBorderImageOutset(&self, value: DOMString) -> ErrorResult

Source§

fn Border_image_slice(&self) -> DOMString

Source§

fn SetBorder_image_slice(&self, value: DOMString) -> ErrorResult

Source§

fn BorderImageSlice(&self) -> DOMString

Source§

fn SetBorderImageSlice(&self, value: DOMString) -> ErrorResult

Source§

fn Border_image_width(&self) -> DOMString

Source§

fn SetBorder_image_width(&self, value: DOMString) -> ErrorResult

Source§

fn BorderImageWidth(&self) -> DOMString

Source§

fn SetBorderImageWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Border_spacing(&self) -> DOMString

Source§

fn SetBorder_spacing(&self, value: DOMString) -> ErrorResult

Source§

fn BorderSpacing(&self) -> DOMString

Source§

fn SetBorderSpacing(&self, value: DOMString) -> ErrorResult

Source§

fn Box_shadow(&self) -> DOMString

Source§

fn SetBox_shadow(&self, value: DOMString) -> ErrorResult

Source§

fn BoxShadow(&self) -> DOMString

Source§

fn SetBoxShadow(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_box_shadow(&self) -> DOMString

Source§

fn Set_webkit_box_shadow(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitBoxShadow(&self) -> DOMString

Source§

fn SetWebkitBoxShadow(&self, value: DOMString) -> ErrorResult

Source§

fn Caret_color(&self) -> DOMString

Source§

fn SetCaret_color(&self, value: DOMString) -> ErrorResult

Source§

fn CaretColor(&self) -> DOMString

Source§

fn SetCaretColor(&self, value: DOMString) -> ErrorResult

Source§

fn Clip(&self) -> DOMString

Source§

fn SetClip(&self, value: DOMString) -> ErrorResult

Source§

fn Clip_path(&self) -> DOMString

Source§

fn SetClip_path(&self, value: DOMString) -> ErrorResult

Source§

fn ClipPath(&self) -> DOMString

Source§

fn SetClipPath(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_clip_path(&self) -> DOMString

Source§

fn Set_webkit_clip_path(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitClipPath(&self) -> DOMString

Source§

fn SetWebkitClipPath(&self, value: DOMString) -> ErrorResult

Source§

fn Color(&self) -> DOMString

Source§

fn SetColor(&self, value: DOMString) -> ErrorResult

Source§

fn Color_scheme(&self) -> DOMString

Source§

fn SetColor_scheme(&self, value: DOMString) -> ErrorResult

Source§

fn ColorScheme(&self) -> DOMString

Source§

fn SetColorScheme(&self, value: DOMString) -> ErrorResult

Source§

fn Column_width(&self) -> DOMString

Source§

fn SetColumn_width(&self, value: DOMString) -> ErrorResult

Source§

fn ColumnWidth(&self) -> DOMString

Source§

fn SetColumnWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Container_name(&self) -> DOMString

Source§

fn SetContainer_name(&self, value: DOMString) -> ErrorResult

Source§

fn ContainerName(&self) -> DOMString

Source§

fn SetContainerName(&self, value: DOMString) -> ErrorResult

Source§

fn Content(&self) -> DOMString

Source§

fn SetContent(&self, value: DOMString) -> ErrorResult

Source§

fn Counter_increment(&self) -> DOMString

Source§

fn SetCounter_increment(&self, value: DOMString) -> ErrorResult

Source§

fn CounterIncrement(&self) -> DOMString

Source§

fn SetCounterIncrement(&self, value: DOMString) -> ErrorResult

Source§

fn Counter_reset(&self) -> DOMString

Source§

fn SetCounter_reset(&self, value: DOMString) -> ErrorResult

Source§

fn CounterReset(&self) -> DOMString

Source§

fn SetCounterReset(&self, value: DOMString) -> ErrorResult

Source§

fn Cursor(&self) -> DOMString

Source§

fn SetCursor(&self, value: DOMString) -> ErrorResult

Source§

fn Filter(&self) -> DOMString

Source§

fn SetFilter(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_filter(&self) -> DOMString

Source§

fn Set_webkit_filter(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitFilter(&self) -> DOMString

Source§

fn SetWebkitFilter(&self, value: DOMString) -> ErrorResult

Source§

fn Flex_basis(&self) -> DOMString

Source§

fn SetFlex_basis(&self, value: DOMString) -> ErrorResult

Source§

fn FlexBasis(&self) -> DOMString

Source§

fn SetFlexBasis(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_flex_basis(&self) -> DOMString

Source§

fn Set_webkit_flex_basis(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitFlexBasis(&self) -> DOMString

Source§

fn SetWebkitFlexBasis(&self, value: DOMString) -> ErrorResult

Source§

fn Font_family(&self) -> DOMString

Source§

fn SetFont_family(&self, value: DOMString) -> ErrorResult

Source§

fn FontFamily(&self) -> DOMString

Source§

fn SetFontFamily(&self, value: DOMString) -> ErrorResult

Source§

fn Font_size(&self) -> DOMString

Source§

fn SetFont_size(&self, value: DOMString) -> ErrorResult

Source§

fn FontSize(&self) -> DOMString

Source§

fn SetFontSize(&self, value: DOMString) -> ErrorResult

Source§

fn Font_variation_settings(&self) -> DOMString

Source§

fn SetFont_variation_settings(&self, value: DOMString) -> ErrorResult

Source§

fn FontVariationSettings(&self) -> DOMString

Source§

fn SetFontVariationSettings(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_template_areas(&self) -> DOMString

Source§

fn SetGrid_template_areas(&self, value: DOMString) -> ErrorResult

Source§

fn GridTemplateAreas(&self) -> DOMString

Source§

fn SetGridTemplateAreas(&self, value: DOMString) -> ErrorResult

Source§

fn Letter_spacing(&self) -> DOMString

Source§

fn SetLetter_spacing(&self, value: DOMString) -> ErrorResult

Source§

fn LetterSpacing(&self) -> DOMString

Source§

fn SetLetterSpacing(&self, value: DOMString) -> ErrorResult

Source§

fn Line_height(&self) -> DOMString

Source§

fn SetLine_height(&self, value: DOMString) -> ErrorResult

Source§

fn LineHeight(&self) -> DOMString

Source§

fn SetLineHeight(&self, value: DOMString) -> ErrorResult

Source§

fn Mask_image(&self) -> DOMString

Source§

fn SetMask_image(&self, value: DOMString) -> ErrorResult

Source§

fn MaskImage(&self) -> DOMString

Source§

fn SetMaskImage(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_mask_image(&self) -> DOMString

Source§

fn Set_webkit_mask_image(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitMaskImage(&self) -> DOMString

Source§

fn SetWebkitMaskImage(&self, value: DOMString) -> ErrorResult

Source§

fn Offset_path(&self) -> DOMString

Source§

fn SetOffset_path(&self, value: DOMString) -> ErrorResult

Source§

fn OffsetPath(&self) -> DOMString

Source§

fn SetOffsetPath(&self, value: DOMString) -> ErrorResult

Source§

fn Outline_offset(&self) -> DOMString

Source§

fn SetOutline_offset(&self, value: DOMString) -> ErrorResult

Source§

fn OutlineOffset(&self) -> DOMString

Source§

fn SetOutlineOffset(&self, value: DOMString) -> ErrorResult

Source§

fn Overflow_clip_margin(&self) -> DOMString

Source§

fn SetOverflow_clip_margin(&self, value: DOMString) -> ErrorResult

Source§

fn OverflowClipMargin(&self) -> DOMString

Source§

fn SetOverflowClipMargin(&self, value: DOMString) -> ErrorResult

Source§

fn Perspective(&self) -> DOMString

Source§

fn SetPerspective(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_perspective(&self) -> DOMString

Source§

fn Set_moz_perspective(&self, value: DOMString) -> ErrorResult

Source§

fn MozPerspective(&self) -> DOMString

Source§

fn SetMozPerspective(&self, value: DOMString) -> ErrorResult

Source§

fn Quotes(&self) -> DOMString

Source§

fn SetQuotes(&self, value: DOMString) -> ErrorResult

Source§

fn Rotate(&self) -> DOMString

Source§

fn SetRotate(&self, value: DOMString) -> ErrorResult

Source§

fn Scale(&self) -> DOMString

Source§

fn SetScale(&self, value: DOMString) -> ErrorResult

Source§

fn Text_indent(&self) -> DOMString

Source§

fn SetText_indent(&self, value: DOMString) -> ErrorResult

Source§

fn TextIndent(&self) -> DOMString

Source§

fn SetTextIndent(&self, value: DOMString) -> ErrorResult

Source§

fn Text_overflow(&self) -> DOMString

Source§

fn SetText_overflow(&self, value: DOMString) -> ErrorResult

Source§

fn TextOverflow(&self) -> DOMString

Source§

fn SetTextOverflow(&self, value: DOMString) -> ErrorResult

Source§

fn Text_shadow(&self) -> DOMString

Source§

fn SetText_shadow(&self, value: DOMString) -> ErrorResult

Source§

fn TextShadow(&self) -> DOMString

Source§

fn SetTextShadow(&self, value: DOMString) -> ErrorResult

Source§

fn Transform(&self) -> DOMString

Source§

fn SetTransform(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_transform(&self) -> DOMString

Source§

fn Set_moz_transform(&self, value: DOMString) -> ErrorResult

Source§

fn MozTransform(&self) -> DOMString

Source§

fn SetMozTransform(&self, value: DOMString) -> ErrorResult

Source§

fn Transform_origin(&self) -> DOMString

Source§

fn SetTransform_origin(&self, value: DOMString) -> ErrorResult

Source§

fn TransformOrigin(&self) -> DOMString

Source§

fn SetTransformOrigin(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_transform_origin(&self) -> DOMString

Source§

fn Set_moz_transform_origin(&self, value: DOMString) -> ErrorResult

Source§

fn MozTransformOrigin(&self) -> DOMString

Source§

fn SetMozTransformOrigin(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_transform_origin(&self) -> DOMString

Source§

fn Set_webkit_transform_origin(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitTransformOrigin(&self) -> DOMString

Source§

fn SetWebkitTransformOrigin(&self, value: DOMString) -> ErrorResult

Source§

fn Transition_behavior(&self) -> DOMString

Source§

fn SetTransition_behavior(&self, value: DOMString) -> ErrorResult

Source§

fn TransitionBehavior(&self) -> DOMString

Source§

fn SetTransitionBehavior(&self, value: DOMString) -> ErrorResult

Source§

fn Transition_delay(&self) -> DOMString

Source§

fn SetTransition_delay(&self, value: DOMString) -> ErrorResult

Source§

fn TransitionDelay(&self) -> DOMString

Source§

fn SetTransitionDelay(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_transition_delay(&self) -> DOMString

Source§

fn Set_moz_transition_delay(&self, value: DOMString) -> ErrorResult

Source§

fn MozTransitionDelay(&self) -> DOMString

Source§

fn SetMozTransitionDelay(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_transition_delay(&self) -> DOMString

Source§

fn Set_webkit_transition_delay(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitTransitionDelay(&self) -> DOMString

Source§

fn SetWebkitTransitionDelay(&self, value: DOMString) -> ErrorResult

Source§

fn Transition_duration(&self) -> DOMString

Source§

fn SetTransition_duration(&self, value: DOMString) -> ErrorResult

Source§

fn TransitionDuration(&self) -> DOMString

Source§

fn SetTransitionDuration(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_transition_duration(&self) -> DOMString

Source§

fn Set_moz_transition_duration(&self, value: DOMString) -> ErrorResult

Source§

fn MozTransitionDuration(&self) -> DOMString

Source§

fn SetMozTransitionDuration(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_transition_duration(&self) -> DOMString

Source§

fn Set_webkit_transition_duration(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitTransitionDuration(&self) -> DOMString

Source§

fn SetWebkitTransitionDuration(&self, value: DOMString) -> ErrorResult

Source§

fn Transition_property(&self) -> DOMString

Source§

fn SetTransition_property(&self, value: DOMString) -> ErrorResult

Source§

fn TransitionProperty(&self) -> DOMString

Source§

fn SetTransitionProperty(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_transition_property(&self) -> DOMString

Source§

fn Set_moz_transition_property(&self, value: DOMString) -> ErrorResult

Source§

fn MozTransitionProperty(&self) -> DOMString

Source§

fn SetMozTransitionProperty(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_transition_property(&self) -> DOMString

Source§

fn Set_webkit_transition_property(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitTransitionProperty(&self) -> DOMString

Source§

fn SetWebkitTransitionProperty(&self, value: DOMString) -> ErrorResult

Source§

fn Transition_timing_function(&self) -> DOMString

Source§

fn SetTransition_timing_function(&self, value: DOMString) -> ErrorResult

Source§

fn TransitionTimingFunction(&self) -> DOMString

Source§

fn SetTransitionTimingFunction(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_transition_timing_function(&self) -> DOMString

Source§

fn Set_moz_transition_timing_function(&self, value: DOMString) -> ErrorResult

Source§

fn MozTransitionTimingFunction(&self) -> DOMString

Source§

fn SetMozTransitionTimingFunction(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_transition_timing_function(&self) -> DOMString

Source§

fn Set_webkit_transition_timing_function(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitTransitionTimingFunction(&self) -> DOMString

Source§

fn SetWebkitTransitionTimingFunction(&self, value: DOMString) -> ErrorResult

Source§

fn Translate(&self) -> DOMString

Source§

fn SetTranslate(&self, value: DOMString) -> ErrorResult

Source§

fn Vertical_align(&self) -> DOMString

Source§

fn SetVertical_align(&self, value: DOMString) -> ErrorResult

Source§

fn VerticalAlign(&self) -> DOMString

Source§

fn SetVerticalAlign(&self, value: DOMString) -> ErrorResult

Source§

fn Will_change(&self) -> DOMString

Source§

fn SetWill_change(&self, value: DOMString) -> ErrorResult

Source§

fn WillChange(&self) -> DOMString

Source§

fn SetWillChange(&self, value: DOMString) -> ErrorResult

Source§

fn Word_spacing(&self) -> DOMString

Source§

fn SetWord_spacing(&self, value: DOMString) -> ErrorResult

Source§

fn WordSpacing(&self) -> DOMString

Source§

fn SetWordSpacing(&self, value: DOMString) -> ErrorResult

Source§

fn Object_position(&self) -> DOMString

Source§

fn SetObject_position(&self, value: DOMString) -> ErrorResult

Source§

fn ObjectPosition(&self) -> DOMString

Source§

fn SetObjectPosition(&self, value: DOMString) -> ErrorResult

Source§

fn Perspective_origin(&self) -> DOMString

Source§

fn SetPerspective_origin(&self, value: DOMString) -> ErrorResult

Source§

fn PerspectiveOrigin(&self) -> DOMString

Source§

fn SetPerspectiveOrigin(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_perspective_origin(&self) -> DOMString

Source§

fn Set_moz_perspective_origin(&self, value: DOMString) -> ErrorResult

Source§

fn MozPerspectiveOrigin(&self) -> DOMString

Source§

fn SetMozPerspectiveOrigin(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_perspective_origin(&self) -> DOMString

Source§

fn Set_webkit_perspective_origin(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitPerspectiveOrigin(&self) -> DOMString

Source§

fn SetWebkitPerspectiveOrigin(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_template_columns(&self) -> DOMString

Source§

fn SetGrid_template_columns(&self, value: DOMString) -> ErrorResult

Source§

fn GridTemplateColumns(&self) -> DOMString

Source§

fn SetGridTemplateColumns(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_template_rows(&self) -> DOMString

Source§

fn SetGrid_template_rows(&self, value: DOMString) -> ErrorResult

Source§

fn GridTemplateRows(&self) -> DOMString

Source§

fn SetGridTemplateRows(&self, value: DOMString) -> ErrorResult

Source§

fn Border_image_source(&self) -> DOMString

Source§

fn SetBorder_image_source(&self, value: DOMString) -> ErrorResult

Source§

fn BorderImageSource(&self) -> DOMString

Source§

fn SetBorderImageSource(&self, value: DOMString) -> ErrorResult

Source§

fn List_style_image(&self) -> DOMString

Source§

fn SetList_style_image(&self, value: DOMString) -> ErrorResult

Source§

fn ListStyleImage(&self) -> DOMString

Source§

fn SetListStyleImage(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_auto_columns(&self) -> DOMString

Source§

fn SetGrid_auto_columns(&self, value: DOMString) -> ErrorResult

Source§

fn GridAutoColumns(&self) -> DOMString

Source§

fn SetGridAutoColumns(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_auto_rows(&self) -> DOMString

Source§

fn SetGrid_auto_rows(&self, value: DOMString) -> ErrorResult

Source§

fn GridAutoRows(&self) -> DOMString

Source§

fn SetGridAutoRows(&self, value: DOMString) -> ErrorResult

Source§

fn Column_gap(&self) -> DOMString

Source§

fn SetColumn_gap(&self, value: DOMString) -> ErrorResult

Source§

fn ColumnGap(&self) -> DOMString

Source§

fn SetColumnGap(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_column_gap(&self) -> DOMString

Source§

fn SetGrid_column_gap(&self, value: DOMString) -> ErrorResult

Source§

fn GridColumnGap(&self) -> DOMString

Source§

fn SetGridColumnGap(&self, value: DOMString) -> ErrorResult

Source§

fn Row_gap(&self) -> DOMString

Source§

fn SetRow_gap(&self, value: DOMString) -> ErrorResult

Source§

fn RowGap(&self) -> DOMString

Source§

fn SetRowGap(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_row_gap(&self) -> DOMString

Source§

fn SetGrid_row_gap(&self, value: DOMString) -> ErrorResult

Source§

fn GridRowGap(&self) -> DOMString

Source§

fn SetGridRowGap(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_column_end(&self) -> DOMString

Source§

fn SetGrid_column_end(&self, value: DOMString) -> ErrorResult

Source§

fn GridColumnEnd(&self) -> DOMString

Source§

fn SetGridColumnEnd(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_column_start(&self) -> DOMString

Source§

fn SetGrid_column_start(&self, value: DOMString) -> ErrorResult

Source§

fn GridColumnStart(&self) -> DOMString

Source§

fn SetGridColumnStart(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_row_end(&self) -> DOMString

Source§

fn SetGrid_row_end(&self, value: DOMString) -> ErrorResult

Source§

fn GridRowEnd(&self) -> DOMString

Source§

fn SetGridRowEnd(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_row_start(&self) -> DOMString

Source§

fn SetGrid_row_start(&self, value: DOMString) -> ErrorResult

Source§

fn GridRowStart(&self) -> DOMString

Source§

fn SetGridRowStart(&self, value: DOMString) -> ErrorResult

Source§

fn Max_block_size(&self) -> DOMString

Source§

fn SetMax_block_size(&self, value: DOMString) -> ErrorResult

Source§

fn MaxBlockSize(&self) -> DOMString

Source§

fn SetMaxBlockSize(&self, value: DOMString) -> ErrorResult

Source§

fn Max_height(&self) -> DOMString

Source§

fn SetMax_height(&self, value: DOMString) -> ErrorResult

Source§

fn MaxHeight(&self) -> DOMString

Source§

fn SetMaxHeight(&self, value: DOMString) -> ErrorResult

Source§

fn Max_inline_size(&self) -> DOMString

Source§

fn SetMax_inline_size(&self, value: DOMString) -> ErrorResult

Source§

fn MaxInlineSize(&self) -> DOMString

Source§

fn SetMaxInlineSize(&self, value: DOMString) -> ErrorResult

Source§

fn Max_width(&self) -> DOMString

Source§

fn SetMax_width(&self, value: DOMString) -> ErrorResult

Source§

fn MaxWidth(&self) -> DOMString

Source§

fn SetMaxWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Border_bottom_left_radius(&self) -> DOMString

Source§

fn SetBorder_bottom_left_radius(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBottomLeftRadius(&self) -> DOMString

Source§

fn SetBorderBottomLeftRadius(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_border_bottom_left_radius(&self) -> DOMString

Source§

fn Set_webkit_border_bottom_left_radius(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitBorderBottomLeftRadius(&self) -> DOMString

Source§

fn SetWebkitBorderBottomLeftRadius(&self, value: DOMString) -> ErrorResult

Source§

fn Border_bottom_right_radius(&self) -> DOMString

Source§

fn SetBorder_bottom_right_radius(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBottomRightRadius(&self) -> DOMString

Source§

fn SetBorderBottomRightRadius(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_border_bottom_right_radius(&self) -> DOMString

Source§

fn Set_webkit_border_bottom_right_radius(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitBorderBottomRightRadius(&self) -> DOMString

Source§

fn SetWebkitBorderBottomRightRadius(&self, value: DOMString) -> ErrorResult

Source§

fn Border_end_end_radius(&self) -> DOMString

Source§

fn SetBorder_end_end_radius(&self, value: DOMString) -> ErrorResult

Source§

fn BorderEndEndRadius(&self) -> DOMString

Source§

fn SetBorderEndEndRadius(&self, value: DOMString) -> ErrorResult

Source§

fn Border_end_start_radius(&self) -> DOMString

Source§

fn SetBorder_end_start_radius(&self, value: DOMString) -> ErrorResult

Source§

fn BorderEndStartRadius(&self) -> DOMString

Source§

fn SetBorderEndStartRadius(&self, value: DOMString) -> ErrorResult

Source§

fn Border_start_end_radius(&self) -> DOMString

Source§

fn SetBorder_start_end_radius(&self, value: DOMString) -> ErrorResult

Source§

fn BorderStartEndRadius(&self) -> DOMString

Source§

fn SetBorderStartEndRadius(&self, value: DOMString) -> ErrorResult

Source§

fn Border_start_start_radius(&self) -> DOMString

Source§

fn SetBorder_start_start_radius(&self, value: DOMString) -> ErrorResult

Source§

fn BorderStartStartRadius(&self) -> DOMString

Source§

fn SetBorderStartStartRadius(&self, value: DOMString) -> ErrorResult

Source§

fn Border_top_left_radius(&self) -> DOMString

Source§

fn SetBorder_top_left_radius(&self, value: DOMString) -> ErrorResult

Source§

fn BorderTopLeftRadius(&self) -> DOMString

Source§

fn SetBorderTopLeftRadius(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_border_top_left_radius(&self) -> DOMString

Source§

fn Set_webkit_border_top_left_radius(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitBorderTopLeftRadius(&self) -> DOMString

Source§

fn SetWebkitBorderTopLeftRadius(&self, value: DOMString) -> ErrorResult

Source§

fn Border_top_right_radius(&self) -> DOMString

Source§

fn SetBorder_top_right_radius(&self, value: DOMString) -> ErrorResult

Source§

fn BorderTopRightRadius(&self) -> DOMString

Source§

fn SetBorderTopRightRadius(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_border_top_right_radius(&self) -> DOMString

Source§

fn Set_webkit_border_top_right_radius(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitBorderTopRightRadius(&self) -> DOMString

Source§

fn SetWebkitBorderTopRightRadius(&self, value: DOMString) -> ErrorResult

Source§

fn Bottom(&self) -> DOMString

Source§

fn SetBottom(&self, value: DOMString) -> ErrorResult

Source§

fn Inset_block_end(&self) -> DOMString

Source§

fn SetInset_block_end(&self, value: DOMString) -> ErrorResult

Source§

fn InsetBlockEnd(&self) -> DOMString

Source§

fn SetInsetBlockEnd(&self, value: DOMString) -> ErrorResult

Source§

fn Inset_block_start(&self) -> DOMString

Source§

fn SetInset_block_start(&self, value: DOMString) -> ErrorResult

Source§

fn InsetBlockStart(&self) -> DOMString

Source§

fn SetInsetBlockStart(&self, value: DOMString) -> ErrorResult

Source§

fn Inset_inline_end(&self) -> DOMString

Source§

fn SetInset_inline_end(&self, value: DOMString) -> ErrorResult

Source§

fn InsetInlineEnd(&self) -> DOMString

Source§

fn SetInsetInlineEnd(&self, value: DOMString) -> ErrorResult

Source§

fn Inset_inline_start(&self) -> DOMString

Source§

fn SetInset_inline_start(&self, value: DOMString) -> ErrorResult

Source§

fn InsetInlineStart(&self) -> DOMString

Source§

fn SetInsetInlineStart(&self, value: DOMString) -> ErrorResult

Source§

fn Left(&self) -> DOMString

Source§

fn SetLeft(&self, value: DOMString) -> ErrorResult

Source§

fn Right(&self) -> DOMString

Source§

fn SetRight(&self, value: DOMString) -> ErrorResult

Source§

fn Top(&self) -> DOMString

Source§

fn SetTop(&self, value: DOMString) -> ErrorResult

Source§

fn Margin_block_end(&self) -> DOMString

Source§

fn SetMargin_block_end(&self, value: DOMString) -> ErrorResult

Source§

fn MarginBlockEnd(&self) -> DOMString

Source§

fn SetMarginBlockEnd(&self, value: DOMString) -> ErrorResult

Source§

fn Margin_block_start(&self) -> DOMString

Source§

fn SetMargin_block_start(&self, value: DOMString) -> ErrorResult

Source§

fn MarginBlockStart(&self) -> DOMString

Source§

fn SetMarginBlockStart(&self, value: DOMString) -> ErrorResult

Source§

fn Margin_bottom(&self) -> DOMString

Source§

fn SetMargin_bottom(&self, value: DOMString) -> ErrorResult

Source§

fn MarginBottom(&self) -> DOMString

Source§

fn SetMarginBottom(&self, value: DOMString) -> ErrorResult

Source§

fn Margin_inline_end(&self) -> DOMString

Source§

fn SetMargin_inline_end(&self, value: DOMString) -> ErrorResult

Source§

fn MarginInlineEnd(&self) -> DOMString

Source§

fn SetMarginInlineEnd(&self, value: DOMString) -> ErrorResult

Source§

fn Margin_inline_start(&self) -> DOMString

Source§

fn SetMargin_inline_start(&self, value: DOMString) -> ErrorResult

Source§

fn MarginInlineStart(&self) -> DOMString

Source§

fn SetMarginInlineStart(&self, value: DOMString) -> ErrorResult

Source§

fn Margin_left(&self) -> DOMString

Source§

fn SetMargin_left(&self, value: DOMString) -> ErrorResult

Source§

fn MarginLeft(&self) -> DOMString

Source§

fn SetMarginLeft(&self, value: DOMString) -> ErrorResult

Source§

fn Margin_right(&self) -> DOMString

Source§

fn SetMargin_right(&self, value: DOMString) -> ErrorResult

Source§

fn MarginRight(&self) -> DOMString

Source§

fn SetMarginRight(&self, value: DOMString) -> ErrorResult

Source§

fn Margin_top(&self) -> DOMString

Source§

fn SetMargin_top(&self, value: DOMString) -> ErrorResult

Source§

fn MarginTop(&self) -> DOMString

Source§

fn SetMarginTop(&self, value: DOMString) -> ErrorResult

Source§

fn Padding_block_end(&self) -> DOMString

Source§

fn SetPadding_block_end(&self, value: DOMString) -> ErrorResult

Source§

fn PaddingBlockEnd(&self) -> DOMString

Source§

fn SetPaddingBlockEnd(&self, value: DOMString) -> ErrorResult

Source§

fn Padding_block_start(&self) -> DOMString

Source§

fn SetPadding_block_start(&self, value: DOMString) -> ErrorResult

Source§

fn PaddingBlockStart(&self) -> DOMString

Source§

fn SetPaddingBlockStart(&self, value: DOMString) -> ErrorResult

Source§

fn Padding_bottom(&self) -> DOMString

Source§

fn SetPadding_bottom(&self, value: DOMString) -> ErrorResult

Source§

fn PaddingBottom(&self) -> DOMString

Source§

fn SetPaddingBottom(&self, value: DOMString) -> ErrorResult

Source§

fn Padding_inline_end(&self) -> DOMString

Source§

fn SetPadding_inline_end(&self, value: DOMString) -> ErrorResult

Source§

fn PaddingInlineEnd(&self) -> DOMString

Source§

fn SetPaddingInlineEnd(&self, value: DOMString) -> ErrorResult

Source§

fn Padding_inline_start(&self) -> DOMString

Source§

fn SetPadding_inline_start(&self, value: DOMString) -> ErrorResult

Source§

fn PaddingInlineStart(&self) -> DOMString

Source§

fn SetPaddingInlineStart(&self, value: DOMString) -> ErrorResult

Source§

fn Padding_left(&self) -> DOMString

Source§

fn SetPadding_left(&self, value: DOMString) -> ErrorResult

Source§

fn PaddingLeft(&self) -> DOMString

Source§

fn SetPaddingLeft(&self, value: DOMString) -> ErrorResult

Source§

fn Padding_right(&self) -> DOMString

Source§

fn SetPadding_right(&self, value: DOMString) -> ErrorResult

Source§

fn PaddingRight(&self) -> DOMString

Source§

fn SetPaddingRight(&self, value: DOMString) -> ErrorResult

Source§

fn Padding_top(&self) -> DOMString

Source§

fn SetPadding_top(&self, value: DOMString) -> ErrorResult

Source§

fn PaddingTop(&self) -> DOMString

Source§

fn SetPaddingTop(&self, value: DOMString) -> ErrorResult

Source§

fn Block_size(&self) -> DOMString

Source§

fn SetBlock_size(&self, value: DOMString) -> ErrorResult

Source§

fn BlockSize(&self) -> DOMString

Source§

fn SetBlockSize(&self, value: DOMString) -> ErrorResult

Source§

fn Height(&self) -> DOMString

Source§

fn SetHeight(&self, value: DOMString) -> ErrorResult

Source§

fn Inline_size(&self) -> DOMString

Source§

fn SetInline_size(&self, value: DOMString) -> ErrorResult

Source§

fn InlineSize(&self) -> DOMString

Source§

fn SetInlineSize(&self, value: DOMString) -> ErrorResult

Source§

fn Min_block_size(&self) -> DOMString

Source§

fn SetMin_block_size(&self, value: DOMString) -> ErrorResult

Source§

fn MinBlockSize(&self) -> DOMString

Source§

fn SetMinBlockSize(&self, value: DOMString) -> ErrorResult

Source§

fn Min_height(&self) -> DOMString

Source§

fn SetMin_height(&self, value: DOMString) -> ErrorResult

Source§

fn MinHeight(&self) -> DOMString

Source§

fn SetMinHeight(&self, value: DOMString) -> ErrorResult

Source§

fn Min_inline_size(&self) -> DOMString

Source§

fn SetMin_inline_size(&self, value: DOMString) -> ErrorResult

Source§

fn MinInlineSize(&self) -> DOMString

Source§

fn SetMinInlineSize(&self, value: DOMString) -> ErrorResult

Source§

fn Min_width(&self) -> DOMString

Source§

fn SetMin_width(&self, value: DOMString) -> ErrorResult

Source§

fn MinWidth(&self) -> DOMString

Source§

fn SetMinWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Width(&self) -> DOMString

Source§

fn SetWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Border_block_end_width(&self) -> DOMString

Source§

fn SetBorder_block_end_width(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBlockEndWidth(&self) -> DOMString

Source§

fn SetBorderBlockEndWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Border_block_start_width(&self) -> DOMString

Source§

fn SetBorder_block_start_width(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBlockStartWidth(&self) -> DOMString

Source§

fn SetBorderBlockStartWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Border_bottom_width(&self) -> DOMString

Source§

fn SetBorder_bottom_width(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBottomWidth(&self) -> DOMString

Source§

fn SetBorderBottomWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Border_inline_end_width(&self) -> DOMString

Source§

fn SetBorder_inline_end_width(&self, value: DOMString) -> ErrorResult

Source§

fn BorderInlineEndWidth(&self) -> DOMString

Source§

fn SetBorderInlineEndWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Border_inline_start_width(&self) -> DOMString

Source§

fn SetBorder_inline_start_width(&self, value: DOMString) -> ErrorResult

Source§

fn BorderInlineStartWidth(&self) -> DOMString

Source§

fn SetBorderInlineStartWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Border_left_width(&self) -> DOMString

Source§

fn SetBorder_left_width(&self, value: DOMString) -> ErrorResult

Source§

fn BorderLeftWidth(&self) -> DOMString

Source§

fn SetBorderLeftWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Border_right_width(&self) -> DOMString

Source§

fn SetBorder_right_width(&self, value: DOMString) -> ErrorResult

Source§

fn BorderRightWidth(&self) -> DOMString

Source§

fn SetBorderRightWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Border_top_width(&self) -> DOMString

Source§

fn SetBorder_top_width(&self, value: DOMString) -> ErrorResult

Source§

fn BorderTopWidth(&self) -> DOMString

Source§

fn SetBorderTopWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Outline_width(&self) -> DOMString

Source§

fn SetOutline_width(&self, value: DOMString) -> ErrorResult

Source§

fn OutlineWidth(&self) -> DOMString

Source§

fn SetOutlineWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Background_color(&self) -> DOMString

Source§

fn SetBackground_color(&self, value: DOMString) -> ErrorResult

Source§

fn BackgroundColor(&self) -> DOMString

Source§

fn SetBackgroundColor(&self, value: DOMString) -> ErrorResult

Source§

fn Border_block_end_color(&self) -> DOMString

Source§

fn SetBorder_block_end_color(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBlockEndColor(&self) -> DOMString

Source§

fn SetBorderBlockEndColor(&self, value: DOMString) -> ErrorResult

Source§

fn Border_block_start_color(&self) -> DOMString

Source§

fn SetBorder_block_start_color(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBlockStartColor(&self) -> DOMString

Source§

fn SetBorderBlockStartColor(&self, value: DOMString) -> ErrorResult

Source§

fn Border_bottom_color(&self) -> DOMString

Source§

fn SetBorder_bottom_color(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBottomColor(&self) -> DOMString

Source§

fn SetBorderBottomColor(&self, value: DOMString) -> ErrorResult

Source§

fn Border_inline_end_color(&self) -> DOMString

Source§

fn SetBorder_inline_end_color(&self, value: DOMString) -> ErrorResult

Source§

fn BorderInlineEndColor(&self) -> DOMString

Source§

fn SetBorderInlineEndColor(&self, value: DOMString) -> ErrorResult

Source§

fn Border_inline_start_color(&self) -> DOMString

Source§

fn SetBorder_inline_start_color(&self, value: DOMString) -> ErrorResult

Source§

fn BorderInlineStartColor(&self) -> DOMString

Source§

fn SetBorderInlineStartColor(&self, value: DOMString) -> ErrorResult

Source§

fn Border_left_color(&self) -> DOMString

Source§

fn SetBorder_left_color(&self, value: DOMString) -> ErrorResult

Source§

fn BorderLeftColor(&self) -> DOMString

Source§

fn SetBorderLeftColor(&self, value: DOMString) -> ErrorResult

Source§

fn Border_right_color(&self) -> DOMString

Source§

fn SetBorder_right_color(&self, value: DOMString) -> ErrorResult

Source§

fn BorderRightColor(&self) -> DOMString

Source§

fn SetBorderRightColor(&self, value: DOMString) -> ErrorResult

Source§

fn Border_top_color(&self) -> DOMString

Source§

fn SetBorder_top_color(&self, value: DOMString) -> ErrorResult

Source§

fn BorderTopColor(&self) -> DOMString

Source§

fn SetBorderTopColor(&self, value: DOMString) -> ErrorResult

Source§

fn Outline_color(&self) -> DOMString

Source§

fn SetOutline_color(&self, value: DOMString) -> ErrorResult

Source§

fn OutlineColor(&self) -> DOMString

Source§

fn SetOutlineColor(&self, value: DOMString) -> ErrorResult

Source§

fn Text_decoration_color(&self) -> DOMString

Source§

fn SetText_decoration_color(&self, value: DOMString) -> ErrorResult

Source§

fn TextDecorationColor(&self) -> DOMString

Source§

fn SetTextDecorationColor(&self, value: DOMString) -> ErrorResult

Source§

fn Background(&self) -> DOMString

Source§

fn SetBackground(&self, value: DOMString) -> ErrorResult

Source§

fn Background_position(&self) -> DOMString

Source§

fn SetBackground_position(&self, value: DOMString) -> ErrorResult

Source§

fn BackgroundPosition(&self) -> DOMString

Source§

fn SetBackgroundPosition(&self, value: DOMString) -> ErrorResult

Source§

fn Border_color(&self) -> DOMString

Source§

fn SetBorder_color(&self, value: DOMString) -> ErrorResult

Source§

fn BorderColor(&self) -> DOMString

Source§

fn SetBorderColor(&self, value: DOMString) -> ErrorResult

Source§

fn Border_style(&self) -> DOMString

Source§

fn SetBorder_style(&self, value: DOMString) -> ErrorResult

Source§

fn BorderStyle(&self) -> DOMString

Source§

fn SetBorderStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Border_width(&self) -> DOMString

Source§

fn SetBorder_width(&self, value: DOMString) -> ErrorResult

Source§

fn BorderWidth(&self) -> DOMString

Source§

fn SetBorderWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Border_top(&self) -> DOMString

Source§

fn SetBorder_top(&self, value: DOMString) -> ErrorResult

Source§

fn BorderTop(&self) -> DOMString

Source§

fn SetBorderTop(&self, value: DOMString) -> ErrorResult

Source§

fn Border_right(&self) -> DOMString

Source§

fn SetBorder_right(&self, value: DOMString) -> ErrorResult

Source§

fn BorderRight(&self) -> DOMString

Source§

fn SetBorderRight(&self, value: DOMString) -> ErrorResult

Source§

fn Border_bottom(&self) -> DOMString

Source§

fn SetBorder_bottom(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBottom(&self) -> DOMString

Source§

fn SetBorderBottom(&self, value: DOMString) -> ErrorResult

Source§

fn Border_left(&self) -> DOMString

Source§

fn SetBorder_left(&self, value: DOMString) -> ErrorResult

Source§

fn BorderLeft(&self) -> DOMString

Source§

fn SetBorderLeft(&self, value: DOMString) -> ErrorResult

Source§

fn Border_block_start(&self) -> DOMString

Source§

fn SetBorder_block_start(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBlockStart(&self) -> DOMString

Source§

fn SetBorderBlockStart(&self, value: DOMString) -> ErrorResult

Source§

fn Border_block_end(&self) -> DOMString

Source§

fn SetBorder_block_end(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBlockEnd(&self) -> DOMString

Source§

fn SetBorderBlockEnd(&self, value: DOMString) -> ErrorResult

Source§

fn Border_inline_start(&self) -> DOMString

Source§

fn SetBorder_inline_start(&self, value: DOMString) -> ErrorResult

Source§

fn BorderInlineStart(&self) -> DOMString

Source§

fn SetBorderInlineStart(&self, value: DOMString) -> ErrorResult

Source§

fn Border_inline_end(&self) -> DOMString

Source§

fn SetBorder_inline_end(&self, value: DOMString) -> ErrorResult

Source§

fn BorderInlineEnd(&self) -> DOMString

Source§

fn SetBorderInlineEnd(&self, value: DOMString) -> ErrorResult

Source§

fn Border(&self) -> DOMString

Source§

fn SetBorder(&self, value: DOMString) -> ErrorResult

Source§

fn Border_radius(&self) -> DOMString

Source§

fn SetBorder_radius(&self, value: DOMString) -> ErrorResult

Source§

fn BorderRadius(&self) -> DOMString

Source§

fn SetBorderRadius(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_border_radius(&self) -> DOMString

Source§

fn Set_webkit_border_radius(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitBorderRadius(&self) -> DOMString

Source§

fn SetWebkitBorderRadius(&self, value: DOMString) -> ErrorResult

Source§

fn Border_image(&self) -> DOMString

Source§

fn SetBorder_image(&self, value: DOMString) -> ErrorResult

Source§

fn BorderImage(&self) -> DOMString

Source§

fn SetBorderImage(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_border_image(&self) -> DOMString

Source§

fn Set_moz_border_image(&self, value: DOMString) -> ErrorResult

Source§

fn MozBorderImage(&self) -> DOMString

Source§

fn SetMozBorderImage(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_border_image(&self) -> DOMString

Source§

fn Set_webkit_border_image(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitBorderImage(&self) -> DOMString

Source§

fn SetWebkitBorderImage(&self, value: DOMString) -> ErrorResult

Source§

fn Border_block_width(&self) -> DOMString

Source§

fn SetBorder_block_width(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBlockWidth(&self) -> DOMString

Source§

fn SetBorderBlockWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Border_block_style(&self) -> DOMString

Source§

fn SetBorder_block_style(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBlockStyle(&self) -> DOMString

Source§

fn SetBorderBlockStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Border_block_color(&self) -> DOMString

Source§

fn SetBorder_block_color(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBlockColor(&self) -> DOMString

Source§

fn SetBorderBlockColor(&self, value: DOMString) -> ErrorResult

Source§

fn Border_inline_width(&self) -> DOMString

Source§

fn SetBorder_inline_width(&self, value: DOMString) -> ErrorResult

Source§

fn BorderInlineWidth(&self) -> DOMString

Source§

fn SetBorderInlineWidth(&self, value: DOMString) -> ErrorResult

Source§

fn Border_inline_style(&self) -> DOMString

Source§

fn SetBorder_inline_style(&self, value: DOMString) -> ErrorResult

Source§

fn BorderInlineStyle(&self) -> DOMString

Source§

fn SetBorderInlineStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Border_inline_color(&self) -> DOMString

Source§

fn SetBorder_inline_color(&self, value: DOMString) -> ErrorResult

Source§

fn BorderInlineColor(&self) -> DOMString

Source§

fn SetBorderInlineColor(&self, value: DOMString) -> ErrorResult

Source§

fn Border_block(&self) -> DOMString

Source§

fn SetBorder_block(&self, value: DOMString) -> ErrorResult

Source§

fn BorderBlock(&self) -> DOMString

Source§

fn SetBorderBlock(&self, value: DOMString) -> ErrorResult

Source§

fn Border_inline(&self) -> DOMString

Source§

fn SetBorder_inline(&self, value: DOMString) -> ErrorResult

Source§

fn BorderInline(&self) -> DOMString

Source§

fn SetBorderInline(&self, value: DOMString) -> ErrorResult

Source§

fn Overflow(&self) -> DOMString

Source§

fn SetOverflow(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_perspective(&self) -> DOMString

Source§

fn Set_webkit_perspective(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitPerspective(&self) -> DOMString

Source§

fn SetWebkitPerspective(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_transform(&self) -> DOMString

Source§

fn Set_webkit_transform(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitTransform(&self) -> DOMString

Source§

fn SetWebkitTransform(&self, value: DOMString) -> ErrorResult

Source§

fn Columns(&self) -> DOMString

Source§

fn SetColumns(&self, value: DOMString) -> ErrorResult

Source§

fn Font(&self) -> DOMString

Source§

fn SetFont(&self, value: DOMString) -> ErrorResult

Source§

fn Font_variant(&self) -> DOMString

Source§

fn SetFont_variant(&self, value: DOMString) -> ErrorResult

Source§

fn FontVariant(&self) -> DOMString

Source§

fn SetFontVariant(&self, value: DOMString) -> ErrorResult

Source§

fn White_space(&self) -> DOMString

Source§

fn SetWhite_space(&self, value: DOMString) -> ErrorResult

Source§

fn WhiteSpace(&self) -> DOMString

Source§

fn SetWhiteSpace(&self, value: DOMString) -> ErrorResult

Source§

fn List_style(&self) -> DOMString

Source§

fn SetList_style(&self, value: DOMString) -> ErrorResult

Source§

fn ListStyle(&self) -> DOMString

Source§

fn SetListStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Margin(&self) -> DOMString

Source§

fn SetMargin(&self, value: DOMString) -> ErrorResult

Source§

fn Margin_block(&self) -> DOMString

Source§

fn SetMargin_block(&self, value: DOMString) -> ErrorResult

Source§

fn MarginBlock(&self) -> DOMString

Source§

fn SetMarginBlock(&self, value: DOMString) -> ErrorResult

Source§

fn Margin_inline(&self) -> DOMString

Source§

fn SetMargin_inline(&self, value: DOMString) -> ErrorResult

Source§

fn MarginInline(&self) -> DOMString

Source§

fn SetMarginInline(&self, value: DOMString) -> ErrorResult

Source§

fn Outline(&self) -> DOMString

Source§

fn SetOutline(&self, value: DOMString) -> ErrorResult

Source§

fn Padding(&self) -> DOMString

Source§

fn SetPadding(&self, value: DOMString) -> ErrorResult

Source§

fn Padding_block(&self) -> DOMString

Source§

fn SetPadding_block(&self, value: DOMString) -> ErrorResult

Source§

fn PaddingBlock(&self) -> DOMString

Source§

fn SetPaddingBlock(&self, value: DOMString) -> ErrorResult

Source§

fn Padding_inline(&self) -> DOMString

Source§

fn SetPadding_inline(&self, value: DOMString) -> ErrorResult

Source§

fn PaddingInline(&self) -> DOMString

Source§

fn SetPaddingInline(&self, value: DOMString) -> ErrorResult

Source§

fn Flex_flow(&self) -> DOMString

Source§

fn SetFlex_flow(&self, value: DOMString) -> ErrorResult

Source§

fn FlexFlow(&self) -> DOMString

Source§

fn SetFlexFlow(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_flex_flow(&self) -> DOMString

Source§

fn Set_webkit_flex_flow(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitFlexFlow(&self) -> DOMString

Source§

fn SetWebkitFlexFlow(&self, value: DOMString) -> ErrorResult

Source§

fn Flex(&self) -> DOMString

Source§

fn SetFlex(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_flex(&self) -> DOMString

Source§

fn Set_webkit_flex(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitFlex(&self) -> DOMString

Source§

fn SetWebkitFlex(&self, value: DOMString) -> ErrorResult

Source§

fn Gap(&self) -> DOMString

Source§

fn SetGap(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_gap(&self) -> DOMString

Source§

fn SetGrid_gap(&self, value: DOMString) -> ErrorResult

Source§

fn GridGap(&self) -> DOMString

Source§

fn SetGridGap(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_row(&self) -> DOMString

Source§

fn SetGrid_row(&self, value: DOMString) -> ErrorResult

Source§

fn GridRow(&self) -> DOMString

Source§

fn SetGridRow(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_column(&self) -> DOMString

Source§

fn SetGrid_column(&self, value: DOMString) -> ErrorResult

Source§

fn GridColumn(&self) -> DOMString

Source§

fn SetGridColumn(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_area(&self) -> DOMString

Source§

fn SetGrid_area(&self, value: DOMString) -> ErrorResult

Source§

fn GridArea(&self) -> DOMString

Source§

fn SetGridArea(&self, value: DOMString) -> ErrorResult

Source§

fn Grid_template(&self) -> DOMString

Source§

fn SetGrid_template(&self, value: DOMString) -> ErrorResult

Source§

fn GridTemplate(&self) -> DOMString

Source§

fn SetGridTemplate(&self, value: DOMString) -> ErrorResult

Source§

fn Grid(&self) -> DOMString

Source§

fn SetGrid(&self, value: DOMString) -> ErrorResult

Source§

fn Place_content(&self) -> DOMString

Source§

fn SetPlace_content(&self, value: DOMString) -> ErrorResult

Source§

fn PlaceContent(&self) -> DOMString

Source§

fn SetPlaceContent(&self, value: DOMString) -> ErrorResult

Source§

fn Place_self(&self) -> DOMString

Source§

fn SetPlace_self(&self, value: DOMString) -> ErrorResult

Source§

fn PlaceSelf(&self) -> DOMString

Source§

fn SetPlaceSelf(&self, value: DOMString) -> ErrorResult

Source§

fn Place_items(&self) -> DOMString

Source§

fn SetPlace_items(&self, value: DOMString) -> ErrorResult

Source§

fn PlaceItems(&self) -> DOMString

Source§

fn SetPlaceItems(&self, value: DOMString) -> ErrorResult

Source§

fn Inset(&self) -> DOMString

Source§

fn SetInset(&self, value: DOMString) -> ErrorResult

Source§

fn Inset_block(&self) -> DOMString

Source§

fn SetInset_block(&self, value: DOMString) -> ErrorResult

Source§

fn InsetBlock(&self) -> DOMString

Source§

fn SetInsetBlock(&self, value: DOMString) -> ErrorResult

Source§

fn Inset_inline(&self) -> DOMString

Source§

fn SetInset_inline(&self, value: DOMString) -> ErrorResult

Source§

fn InsetInline(&self) -> DOMString

Source§

fn SetInsetInline(&self, value: DOMString) -> ErrorResult

Source§

fn Text_decoration(&self) -> DOMString

Source§

fn SetText_decoration(&self, value: DOMString) -> ErrorResult

Source§

fn TextDecoration(&self) -> DOMString

Source§

fn SetTextDecoration(&self, value: DOMString) -> ErrorResult

Source§

fn Transition(&self) -> DOMString

Source§

fn SetTransition(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_transition(&self) -> DOMString

Source§

fn Set_moz_transition(&self, value: DOMString) -> ErrorResult

Source§

fn MozTransition(&self) -> DOMString

Source§

fn SetMozTransition(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_transition(&self) -> DOMString

Source§

fn Set_webkit_transition(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitTransition(&self) -> DOMString

Source§

fn SetWebkitTransition(&self, value: DOMString) -> ErrorResult

Source§

fn Animation(&self) -> DOMString

Source§

fn SetAnimation(&self, value: DOMString) -> ErrorResult

Source§

fn _moz_animation(&self) -> DOMString

Source§

fn Set_moz_animation(&self, value: DOMString) -> ErrorResult

Source§

fn MozAnimation(&self) -> DOMString

Source§

fn SetMozAnimation(&self, value: DOMString) -> ErrorResult

Source§

fn _webkit_animation(&self) -> DOMString

Source§

fn Set_webkit_animation(&self, value: DOMString) -> ErrorResult

Source§

fn WebkitAnimation(&self) -> DOMString

Source§

fn SetWebkitAnimation(&self, value: DOMString) -> ErrorResult

Source§

fn All(&self) -> DOMString

Source§

fn SetAll(&self, value: DOMString) -> ErrorResult

Source§

impl CSSStyleRuleMethods<DomTypeHolder> for CSSStyleRule

Source§

impl CSSStyleSheetMethods<DomTypeHolder> for CSSStyleSheet

Source§

impl CSSStyleValueMethods<DomTypeHolder> for CSSStyleValue

Source§

impl CanvasGradientMethods<DomTypeHolder> for CanvasGradient

Source§

impl CanvasPatternMethods<DomTypeHolder> for CanvasPattern

Source§

impl CanvasRenderingContext2DMethods<DomTypeHolder> for CanvasRenderingContext2D

Source§

fn Canvas(&self) -> DomRoot<HTMLCanvasElement>

Source§

fn Save(&self)

Source§

fn Restore(&self)

Source§

fn Reset(&self)

Source§

fn Scale(&self, x: f64, y: f64)

Source§

fn Rotate(&self, angle: f64)

Source§

fn Translate(&self, x: f64, y: f64)

Source§

fn Transform(&self, a: f64, b: f64, c: f64, d: f64, e: f64, f: f64)

Source§

fn GetTransform(&self, can_gc: CanGc) -> DomRoot<DOMMatrix>

Source§

fn SetTransform( &self, a: f64, b: f64, c: f64, d: f64, e: f64, f: f64, ) -> ErrorResult

Source§

fn SetTransform_(&self, transform: &DOMMatrix2DInit) -> ErrorResult

Source§

fn ResetTransform(&self)

Source§

fn GlobalAlpha(&self) -> f64

Source§

fn SetGlobalAlpha(&self, alpha: f64)

Source§

fn GlobalCompositeOperation(&self) -> DOMString

Source§

fn SetGlobalCompositeOperation(&self, op_str: DOMString)

Source§

fn FillRect(&self, x: f64, y: f64, width: f64, height: f64)

Source§

fn ClearRect(&self, x: f64, y: f64, width: f64, height: f64)

Source§

fn StrokeRect(&self, x: f64, y: f64, width: f64, height: f64)

Source§

fn BeginPath(&self)

Source§

fn ClosePath(&self)

Source§

fn Fill(&self, fill_rule: CanvasFillRule)

Source§

fn Fill_(&self, path: &Path2D, fill_rule: CanvasFillRule)

Source§

fn Stroke(&self)

Source§

fn Stroke_(&self, path: &Path2D)

Source§

fn Clip(&self, fill_rule: CanvasFillRule)

Source§

fn Clip_(&self, path: &Path2D, fill_rule: CanvasFillRule)

Source§

fn IsPointInPath(&self, x: f64, y: f64, fill_rule: CanvasFillRule) -> bool

Source§

fn IsPointInPath_( &self, path: &Path2D, x: f64, y: f64, fill_rule: CanvasFillRule, ) -> bool

Source§

fn FillText(&self, text: DOMString, x: f64, y: f64, max_width: Option<f64>)

Source§

fn StrokeText(&self, text: DOMString, x: f64, y: f64, max_width: Option<f64>)

Source§

fn MeasureText(&self, text: DOMString, can_gc: CanGc) -> DomRoot<TextMetrics>

Source§

fn Font(&self) -> DOMString

Source§

fn SetFont(&self, value: DOMString)

Source§

fn TextAlign(&self) -> CanvasTextAlign

Source§

fn SetTextAlign(&self, value: CanvasTextAlign)

Source§

fn TextBaseline(&self) -> CanvasTextBaseline

Source§

fn SetTextBaseline(&self, value: CanvasTextBaseline)

Source§

fn Direction(&self) -> CanvasDirection

Source§

fn SetDirection(&self, value: CanvasDirection)

Source§

fn DrawImage( &self, image: CanvasImageSource<DomTypeHolder>, dx: f64, dy: f64, ) -> ErrorResult

Source§

fn DrawImage_( &self, image: CanvasImageSource<DomTypeHolder>, dx: f64, dy: f64, dw: f64, dh: f64, ) -> ErrorResult

Source§

fn DrawImage__( &self, image: CanvasImageSource<DomTypeHolder>, sx: f64, sy: f64, sw: f64, sh: f64, dx: f64, dy: f64, dw: f64, dh: f64, ) -> ErrorResult

Source§

fn MoveTo(&self, x: f64, y: f64)

Source§

fn LineTo(&self, x: f64, y: f64)

Source§

fn Rect(&self, x: f64, y: f64, width: f64, height: f64)

Source§

fn QuadraticCurveTo(&self, cpx: f64, cpy: f64, x: f64, y: f64)

Source§

fn BezierCurveTo( &self, cp1x: f64, cp1y: f64, cp2x: f64, cp2y: f64, x: f64, y: f64, )

Source§

fn Arc( &self, x: f64, y: f64, r: f64, start: f64, end: f64, ccw: bool, ) -> ErrorResult

Source§

fn ArcTo( &self, cp1x: f64, cp1y: f64, cp2x: f64, cp2y: f64, r: f64, ) -> ErrorResult

Source§

fn Ellipse( &self, x: f64, y: f64, rx: f64, ry: f64, rotation: f64, start: f64, end: f64, ccw: bool, ) -> ErrorResult

Source§

fn ImageSmoothingEnabled(&self) -> bool

Source§

fn SetImageSmoothingEnabled(&self, value: bool)

Source§

fn StrokeStyle(&self) -> StringOrCanvasGradientOrCanvasPattern<DomTypeHolder>

Source§

fn SetStrokeStyle( &self, value: StringOrCanvasGradientOrCanvasPattern<DomTypeHolder>, )

Source§

fn FillStyle(&self) -> StringOrCanvasGradientOrCanvasPattern<DomTypeHolder>

Source§

fn SetFillStyle( &self, value: StringOrCanvasGradientOrCanvasPattern<DomTypeHolder>, )

Source§

fn CreateImageData( &self, sw: i32, sh: i32, can_gc: CanGc, ) -> Fallible<DomRoot<ImageData>>

Source§

fn CreateImageData_( &self, imagedata: &ImageData, can_gc: CanGc, ) -> Fallible<DomRoot<ImageData>>

Source§

fn GetImageData( &self, sx: i32, sy: i32, sw: i32, sh: i32, can_gc: CanGc, ) -> Fallible<DomRoot<ImageData>>

Source§

fn PutImageData(&self, imagedata: &ImageData, dx: i32, dy: i32)

Source§

fn CreateLinearGradient( &self, x0: Finite<f64>, y0: Finite<f64>, x1: Finite<f64>, y1: Finite<f64>, can_gc: CanGc, ) -> DomRoot<CanvasGradient>

Source§

fn CreateRadialGradient( &self, x0: Finite<f64>, y0: Finite<f64>, r0: Finite<f64>, x1: Finite<f64>, y1: Finite<f64>, r1: Finite<f64>, can_gc: CanGc, ) -> Fallible<DomRoot<CanvasGradient>>

Source§

fn CreatePattern( &self, image: CanvasImageSource<DomTypeHolder>, repetition: DOMString, can_gc: CanGc, ) -> Fallible<Option<DomRoot<CanvasPattern>>>

Source§

fn LineWidth(&self) -> f64

Source§

fn SetLineWidth(&self, width: f64)

Source§

fn LineCap(&self) -> CanvasLineCap

Source§

fn SetLineCap(&self, cap: CanvasLineCap)

Source§

fn LineJoin(&self) -> CanvasLineJoin

Source§

fn SetLineJoin(&self, join: CanvasLineJoin)

Source§

fn MiterLimit(&self) -> f64

Source§

fn SetMiterLimit(&self, limit: f64)

Source§

fn SetLineDash(&self, segments: Vec<f64>)

Source§

fn GetLineDash(&self) -> Vec<f64>

Source§

fn LineDashOffset(&self) -> f64

Source§

fn SetLineDashOffset(&self, offset: f64)

Source§

fn ShadowOffsetX(&self) -> f64

Source§

fn SetShadowOffsetX(&self, value: f64)

Source§

fn ShadowOffsetY(&self) -> f64

Source§

fn SetShadowOffsetY(&self, value: f64)

Source§

fn ShadowBlur(&self) -> f64

Source§

fn SetShadowBlur(&self, value: f64)

Source§

fn ShadowColor(&self) -> DOMString

Source§

fn SetShadowColor(&self, value: DOMString)

Source§

fn PutImageData_( &self, imagedata: &ImageData, dx: i32, dy: i32, dirty_x: i32, dirty_y: i32, dirty_width: i32, dirty_height: i32, )

Source§

impl ChannelMergerNodeMethods<DomTypeHolder> for ChannelMergerNode

Source§

impl ChannelSplitterNodeMethods<DomTypeHolder> for ChannelSplitterNode

Source§

impl CharacterDataMethods<DomTypeHolder> for CharacterData

Source§

fn Data(&self) -> DOMString

Source§

fn SetData(&self, data: DOMString)

Source§

fn Length(&self) -> u32

Source§

fn SubstringData(&self, offset: u32, count: u32) -> Fallible<DOMString>

Source§

fn AppendData(&self, data: DOMString)

Source§

fn InsertData(&self, offset: u32, arg: DOMString) -> ErrorResult

Source§

fn DeleteData(&self, offset: u32, count: u32) -> ErrorResult

Source§

fn ReplaceData(&self, offset: u32, count: u32, arg: DOMString) -> ErrorResult

Source§

fn Before( &self, nodes: Vec<NodeOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn After( &self, nodes: Vec<NodeOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn ReplaceWith( &self, nodes: Vec<NodeOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn Remove(&self, can_gc: CanGc)

Source§

fn GetPreviousElementSibling(&self) -> Option<DomRoot<Element>>

Source§

fn GetNextElementSibling(&self) -> Option<DomRoot<Element>>

Source§

impl ClientMethods<DomTypeHolder> for Client

Source§

impl ClipboardEventMethods<DomTypeHolder> for ClipboardEvent

Source§

impl ClipboardItemMethods<DomTypeHolder> for ClipboardItem

Source§

impl ClipboardMethods<DomTypeHolder> for Clipboard

Source§

impl CloseEventMethods<DomTypeHolder> for CloseEvent

Source§

impl CommandEventMethods<DomTypeHolder> for CommandEvent

Source§

impl CommentMethods<DomTypeHolder> for Comment

Source§

impl CompositionEventMethods<DomTypeHolder> for CompositionEvent

Source§

impl CompressionStreamMethods<DomTypeHolder> for CompressionStream

Source§

impl ConstantSourceNodeMethods<DomTypeHolder> for ConstantSourceNode

Source§

impl CookieStoreMethods<DomTypeHolder> for CookieStore

Source§

impl CountQueuingStrategyMethods<DomTypeHolder> for CountQueuingStrategy

Source§

impl CredentialMethods<DomTypeHolder> for Credential

Source§

impl CredentialsContainerMethods<DomTypeHolder> for CredentialsContainer

Source§

impl CryptoKeyMethods<DomTypeHolder> for CryptoKey

Source§

impl CryptoMethods<DomTypeHolder> for Crypto

Source§

impl CustomElementRegistryMethods<DomTypeHolder> for CustomElementRegistry

Source§

impl CustomEventMethods<DomTypeHolder> for CustomEvent

Source§

impl CustomStateSetMethods<DomTypeHolder> for CustomStateSet

Source§

impl DOMExceptionMethods<DomTypeHolder> for DOMException

Source§

impl DOMImplementationMethods<DomTypeHolder> for DOMImplementation

Source§

impl DOMMatrixMethods<DomTypeHolder> for DOMMatrix

Source§

fn Constructor( global: &GlobalScope, proto: Option<HandleObject<'_>>, can_gc: CanGc, init: Option<StringOrUnrestrictedDoubleSequence>, ) -> Fallible<DomRoot<Self>>

Source§

fn FromMatrix( global: &GlobalScope, other: &DOMMatrixInit, can_gc: CanGc, ) -> Fallible<DomRoot<Self>>

Source§

fn FromFloat32Array( global: &GlobalScope, array: CustomAutoRooterGuard<'_, Float32Array>, can_gc: CanGc, ) -> Fallible<DomRoot<DOMMatrix>>

Source§

fn FromFloat64Array( global: &GlobalScope, array: CustomAutoRooterGuard<'_, Float64Array>, can_gc: CanGc, ) -> Fallible<DomRoot<DOMMatrix>>

Source§

fn M11(&self) -> f64

Source§

fn SetM11(&self, value: f64)

Source§

fn M12(&self) -> f64

Source§

fn SetM12(&self, value: f64)

Source§

fn M13(&self) -> f64

Source§

fn SetM13(&self, value: f64)

Source§

fn M14(&self) -> f64

Source§

fn SetM14(&self, value: f64)

Source§

fn M21(&self) -> f64

Source§

fn SetM21(&self, value: f64)

Source§

fn M22(&self) -> f64

Source§

fn SetM22(&self, value: f64)

Source§

fn M23(&self) -> f64

Source§

fn SetM23(&self, value: f64)

Source§

fn M24(&self) -> f64

Source§

fn SetM24(&self, value: f64)

Source§

fn M31(&self) -> f64

Source§

fn SetM31(&self, value: f64)

Source§

fn M32(&self) -> f64

Source§

fn SetM32(&self, value: f64)

Source§

fn M33(&self) -> f64

Source§

fn SetM33(&self, value: f64)

Source§

fn M34(&self) -> f64

Source§

fn SetM34(&self, value: f64)

Source§

fn M41(&self) -> f64

Source§

fn SetM41(&self, value: f64)

Source§

fn M42(&self) -> f64

Source§

fn SetM42(&self, value: f64)

Source§

fn M43(&self) -> f64

Source§

fn SetM43(&self, value: f64)

Source§

fn M44(&self) -> f64

Source§

fn SetM44(&self, value: f64)

Source§

fn A(&self) -> f64

Source§

fn SetA(&self, value: f64)

Source§

fn B(&self) -> f64

Source§

fn SetB(&self, value: f64)

Source§

fn C(&self) -> f64

Source§

fn SetC(&self, value: f64)

Source§

fn D(&self) -> f64

Source§

fn SetD(&self, value: f64)

Source§

fn E(&self) -> f64

Source§

fn SetE(&self, value: f64)

Source§

fn F(&self) -> f64

Source§

fn SetF(&self, value: f64)

Source§

fn MultiplySelf(&self, other: &DOMMatrixInit) -> Fallible<DomRoot<DOMMatrix>>

Source§

fn PreMultiplySelf(&self, other: &DOMMatrixInit) -> Fallible<DomRoot<DOMMatrix>>

Source§

fn TranslateSelf(&self, tx: f64, ty: f64, tz: f64) -> DomRoot<DOMMatrix>

Source§

fn ScaleSelf( &self, scaleX: f64, scaleY: Option<f64>, scaleZ: f64, originX: f64, originY: f64, originZ: f64, ) -> DomRoot<DOMMatrix>

Source§

fn Scale3dSelf( &self, scale: f64, originX: f64, originY: f64, originZ: f64, ) -> DomRoot<DOMMatrix>

Source§

fn RotateSelf( &self, rotX: f64, rotY: Option<f64>, rotZ: Option<f64>, ) -> DomRoot<DOMMatrix>

Source§

fn RotateFromVectorSelf(&self, x: f64, y: f64) -> DomRoot<DOMMatrix>

Source§

fn RotateAxisAngleSelf( &self, x: f64, y: f64, z: f64, angle: f64, ) -> DomRoot<DOMMatrix>

Source§

fn SkewXSelf(&self, sx: f64) -> DomRoot<DOMMatrix>

Source§

fn SkewYSelf(&self, sy: f64) -> DomRoot<DOMMatrix>

Source§

fn InvertSelf(&self) -> DomRoot<DOMMatrix>

Source§

fn SetMatrixValue( &self, transformList: DOMString, ) -> Fallible<DomRoot<DOMMatrix>>

Source§

impl DOMMatrixReadOnlyMethods<DomTypeHolder> for DOMMatrixReadOnly

Source§

fn Constructor( global: &GlobalScope, proto: Option<HandleObject<'_>>, can_gc: CanGc, init: Option<StringOrUnrestrictedDoubleSequence>, ) -> Fallible<DomRoot<Self>>

Source§

fn FromMatrix( global: &GlobalScope, other: &DOMMatrixInit, can_gc: CanGc, ) -> Fallible<DomRoot<Self>>

Source§

fn FromFloat32Array( global: &GlobalScope, array: CustomAutoRooterGuard<'_, Float32Array>, can_gc: CanGc, ) -> Fallible<DomRoot<DOMMatrixReadOnly>>

Source§

fn FromFloat64Array( global: &GlobalScope, array: CustomAutoRooterGuard<'_, Float64Array>, can_gc: CanGc, ) -> Fallible<DomRoot<DOMMatrixReadOnly>>

Source§

fn M11(&self) -> f64

Source§

fn M12(&self) -> f64

Source§

fn M13(&self) -> f64

Source§

fn M14(&self) -> f64

Source§

fn M21(&self) -> f64

Source§

fn M22(&self) -> f64

Source§

fn M23(&self) -> f64

Source§

fn M24(&self) -> f64

Source§

fn M31(&self) -> f64

Source§

fn M32(&self) -> f64

Source§

fn M33(&self) -> f64

Source§

fn M34(&self) -> f64

Source§

fn M41(&self) -> f64

Source§

fn M42(&self) -> f64

Source§

fn M43(&self) -> f64

Source§

fn M44(&self) -> f64

Source§

fn A(&self) -> f64

Source§

fn B(&self) -> f64

Source§

fn C(&self) -> f64

Source§

fn D(&self) -> f64

Source§

fn E(&self) -> f64

Source§

fn F(&self) -> f64

Source§

fn Is2D(&self) -> bool

Source§

fn IsIdentity(&self) -> bool

Source§

fn Translate( &self, tx: f64, ty: f64, tz: f64, can_gc: CanGc, ) -> DomRoot<DOMMatrix>

Source§

fn Scale( &self, scaleX: f64, scaleY: Option<f64>, scaleZ: f64, originX: f64, originY: f64, originZ: f64, can_gc: CanGc, ) -> DomRoot<DOMMatrix>

Source§

fn ScaleNonUniform( &self, scaleX: f64, scaleY: f64, can_gc: CanGc, ) -> DomRoot<DOMMatrix>

Source§

fn Scale3d( &self, scale: f64, originX: f64, originY: f64, originZ: f64, can_gc: CanGc, ) -> DomRoot<DOMMatrix>

Source§

fn Rotate( &self, rotX: f64, rotY: Option<f64>, rotZ: Option<f64>, can_gc: CanGc, ) -> DomRoot<DOMMatrix>

Source§

fn RotateFromVector(&self, x: f64, y: f64, can_gc: CanGc) -> DomRoot<DOMMatrix>

Source§

fn RotateAxisAngle( &self, x: f64, y: f64, z: f64, angle: f64, can_gc: CanGc, ) -> DomRoot<DOMMatrix>

Source§

fn SkewX(&self, sx: f64, can_gc: CanGc) -> DomRoot<DOMMatrix>

Source§

fn SkewY(&self, sy: f64, can_gc: CanGc) -> DomRoot<DOMMatrix>

Source§

fn Multiply( &self, other: &DOMMatrixInit, can_gc: CanGc, ) -> Fallible<DomRoot<DOMMatrix>>

Source§

fn FlipX(&self, can_gc: CanGc) -> DomRoot<DOMMatrix>

Source§

fn FlipY(&self, can_gc: CanGc) -> DomRoot<DOMMatrix>

Source§

fn Inverse(&self, can_gc: CanGc) -> DomRoot<DOMMatrix>

Source§

fn TransformPoint( &self, point: &DOMPointInit, can_gc: CanGc, ) -> DomRoot<DOMPoint>

Source§

fn ToFloat32Array( &self, cx: JSContext, can_gc: CanGc, ) -> RootedTraceableBox<HeapFloat32Array>

Source§

fn ToFloat64Array( &self, cx: JSContext, can_gc: CanGc, ) -> RootedTraceableBox<HeapFloat64Array>

Source§

fn Stringifier(&self) -> Fallible<DOMString>

Source§

impl DOMParserMethods<DomTypeHolder> for DOMParser

Source§

impl DOMPointMethods<DomTypeHolder> for DOMPoint

Source§

impl DOMPointReadOnlyMethods<DomTypeHolder> for DOMPointReadOnly

Source§

impl DOMQuadMethods<DomTypeHolder> for DOMQuad

Source§

impl DOMRectListMethods<DomTypeHolder> for DOMRectList

Source§

impl DOMRectMethods<DomTypeHolder> for DOMRect

Source§

impl DOMRectReadOnlyMethods<DomTypeHolder> for DOMRectReadOnly

Source§

impl DOMStringListMethods<DomTypeHolder> for DOMStringList

Source§

impl DOMStringMapMethods<DomTypeHolder> for DOMStringMap

Source§

impl DOMTokenListMethods<DomTypeHolder> for DOMTokenList

Source§

impl DataTransferItemListMethods<DomTypeHolder> for DataTransferItemList

Source§

impl DataTransferItemMethods<DomTypeHolder> for DataTransferItem

Source§

impl DataTransferMethods<DomTypeHolder> for DataTransfer

Source§

fn Constructor( window: &Window, proto: Option<HandleObject<'_>>, can_gc: CanGc, ) -> DomRoot<DataTransfer>

Source§

fn DropEffect(&self) -> DOMString

Source§

fn SetDropEffect(&self, value: DOMString)

Source§

fn EffectAllowed(&self) -> DOMString

Source§

fn SetEffectAllowed(&self, value: DOMString)

Source§

fn Items(&self) -> DomRoot<DataTransferItemList>

Source§

fn SetDragImage(&self, image: &Element, x: i32, y: i32)

Source§

fn Types(&self, cx: JSContext, can_gc: CanGc, retval: MutableHandleValue<'_>)

Source§

fn GetData(&self, format: DOMString) -> DOMString

Source§

fn SetData(&self, format: DOMString, data: DOMString)

Source§

fn ClearData(&self, format: Option<DOMString>)

Source§

fn Files(&self, can_gc: CanGc) -> DomRoot<FileList>

Source§

impl DebuggerAddDebuggeeEventMethods<DomTypeHolder> for DebuggerAddDebuggeeEvent

Source§

impl DebuggerGetPossibleBreakpointsEventMethods<DomTypeHolder> for DebuggerGetPossibleBreakpointsEvent

Source§

impl DebuggerGlobalScopeMethods<DomTypeHolder> for DebuggerGlobalScope

Source§

impl DebuggerPauseEventMethods<DomTypeHolder> for DebuggerPauseEvent

Source§

fn IsTrusted(&self) -> bool

Source§

impl DebuggerSetBreakpointEventMethods<DomTypeHolder> for DebuggerSetBreakpointEvent

Source§

fn SpidermonkeyId(&self) -> u32

Source§

fn ScriptId(&self) -> u32

Source§

fn Offset(&self) -> u32

Source§

fn IsTrusted(&self) -> bool

Source§

impl DecompressionStreamMethods<DomTypeHolder> for DecompressionStream

Source§

impl DedicatedWorkerGlobalScopeMethods<DomTypeHolder> for DedicatedWorkerGlobalScope

Source§

impl DissimilarOriginLocationMethods<DomTypeHolder> for DissimilarOriginLocation

Source§

impl DissimilarOriginWindowMethods<DomTypeHolder> for DissimilarOriginWindow

Source§

fn Window(&self) -> DomRoot<WindowProxy>

Source§

fn Self_(&self) -> DomRoot<WindowProxy>

Source§

fn Frames(&self) -> DomRoot<WindowProxy>

Source§

fn GetParent(&self) -> Option<DomRoot<WindowProxy>>

Source§

fn GetTop(&self) -> Option<DomRoot<WindowProxy>>

Source§

fn Length(&self) -> u32

Source§

fn Close(&self)

Source§

fn Closed(&self) -> bool

Source§

fn PostMessage( &self, cx: JSContext, message: HandleValue<'_>, target_origin: USVString, transfer: CustomAutoRooterGuard<'_, Vec<*mut JSObject>>, ) -> ErrorResult

Source§

fn PostMessage_( &self, cx: JSContext, message: HandleValue<'_>, options: RootedTraceableBox<WindowPostMessageOptions>, ) -> ErrorResult

Source§

fn Opener(&self, _: JSContext, retval: MutableHandleValue<'_>)

Source§

fn SetOpener(&self, _: JSContext, _: HandleValue<'_>)

Source§

fn Blur(&self)

Source§

fn Focus(&self)

Source§

fn Location(&self, can_gc: CanGc) -> DomRoot<DissimilarOriginLocation>

Source§

impl DocumentFragmentMethods<DomTypeHolder> for DocumentFragment

Source§

fn Constructor( window: &Window, proto: Option<HandleObject<'_>>, can_gc: CanGc, ) -> Fallible<DomRoot<DocumentFragment>>

Source§

fn Children(&self, can_gc: CanGc) -> DomRoot<HTMLCollection>

Source§

fn GetElementById(&self, id: DOMString) -> Option<DomRoot<Element>>

Source§

fn GetFirstElementChild(&self) -> Option<DomRoot<Element>>

Source§

fn GetLastElementChild(&self) -> Option<DomRoot<Element>>

Source§

fn ChildElementCount(&self) -> u32

Source§

fn Prepend( &self, nodes: Vec<NodeOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn Append( &self, nodes: Vec<NodeOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn ReplaceChildren( &self, nodes: Vec<NodeOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn QuerySelector( &self, selectors: DOMString, ) -> Fallible<Option<DomRoot<Element>>>

Source§

fn QuerySelectorAll(&self, selectors: DOMString) -> Fallible<DomRoot<NodeList>>

Source§

impl DocumentMethods<DomTypeHolder> for Document

Source§

fn Constructor( window: &Window, proto: Option<HandleObject<'_>>, can_gc: CanGc, ) -> Fallible<DomRoot<Document>>

Source§

fn ParseHTMLUnsafe( window: &Window, s: TrustedHTMLOrString<DomTypeHolder>, can_gc: CanGc, ) -> Fallible<DomRoot<Self>>

Source§

fn QueryCommandSupported(&self, _command: DOMString) -> bool

Source§

fn StyleSheets(&self, can_gc: CanGc) -> DomRoot<StyleSheetList>

Source§

fn Implementation(&self, can_gc: CanGc) -> DomRoot<DOMImplementation>

Source§

fn URL(&self) -> USVString

Source§

fn GetActiveElement(&self) -> Option<DomRoot<Element>>

Source§

fn HasFocus(&self) -> bool

Source§

fn Domain(&self) -> DOMString

Source§

fn SetDomain(&self, value: DOMString) -> ErrorResult

Source§

fn Referrer(&self) -> DOMString

Source§

fn DocumentURI(&self) -> USVString

Source§

fn CompatMode(&self) -> DOMString

Source§

fn CharacterSet(&self) -> DOMString

Source§

fn Charset(&self) -> DOMString

Source§

fn InputEncoding(&self) -> DOMString

Source§

fn ContentType(&self) -> DOMString

Source§

fn GetDoctype(&self) -> Option<DomRoot<DocumentType>>

Source§

fn GetDocumentElement(&self) -> Option<DomRoot<Element>>

Source§

fn GetElementsByTagName( &self, qualified_name: DOMString, can_gc: CanGc, ) -> DomRoot<HTMLCollection>

Source§

fn GetElementsByTagNameNS( &self, maybe_ns: Option<DOMString>, tag_name: DOMString, can_gc: CanGc, ) -> DomRoot<HTMLCollection>

Source§

fn GetElementsByClassName( &self, classes: DOMString, can_gc: CanGc, ) -> DomRoot<HTMLCollection>

Source§

fn GetElementById(&self, id: DOMString) -> Option<DomRoot<Element>>

Source§

fn CreateElement( &self, local_name: DOMString, options: StringOrElementCreationOptions, can_gc: CanGc, ) -> Fallible<DomRoot<Element>>

Source§

fn CreateElementNS( &self, namespace: Option<DOMString>, qualified_name: DOMString, options: StringOrElementCreationOptions, can_gc: CanGc, ) -> Fallible<DomRoot<Element>>

Source§

fn CreateAttribute( &self, local_name: DOMString, can_gc: CanGc, ) -> Fallible<DomRoot<Attr>>

Source§

fn CreateAttributeNS( &self, namespace: Option<DOMString>, qualified_name: DOMString, can_gc: CanGc, ) -> Fallible<DomRoot<Attr>>

Source§

fn CreateDocumentFragment(&self, can_gc: CanGc) -> DomRoot<DocumentFragment>

Source§

fn CreateTextNode(&self, data: DOMString, can_gc: CanGc) -> DomRoot<Text>

Source§

fn CreateCDATASection( &self, data: DOMString, can_gc: CanGc, ) -> Fallible<DomRoot<CDATASection>>

Source§

fn CreateComment(&self, data: DOMString, can_gc: CanGc) -> DomRoot<Comment>

Source§

fn CreateProcessingInstruction( &self, target: DOMString, data: DOMString, can_gc: CanGc, ) -> Fallible<DomRoot<ProcessingInstruction>>

Source§

fn ImportNode( &self, node: &Node, options: BooleanOrImportNodeOptions<DomTypeHolder>, can_gc: CanGc, ) -> Fallible<DomRoot<Node>>

Source§

fn AdoptNode(&self, node: &Node, can_gc: CanGc) -> Fallible<DomRoot<Node>>

Source§

fn CreateEvent( &self, interface: DOMString, can_gc: CanGc, ) -> Fallible<DomRoot<Event>>

Source§

fn LastModified(&self) -> DOMString

Source§

fn CreateRange(&self, can_gc: CanGc) -> DomRoot<Range>

Source§

fn CreateNodeIterator( &self, root: &Node, what_to_show: u32, filter: Option<Rc<NodeFilter<DomTypeHolder>>>, can_gc: CanGc, ) -> DomRoot<NodeIterator>

Source§

fn CreateTreeWalker( &self, root: &Node, what_to_show: u32, filter: Option<Rc<NodeFilter<DomTypeHolder>>>, ) -> DomRoot<TreeWalker>

Source§

fn Title(&self) -> DOMString

Source§

fn SetTitle(&self, title: DOMString, can_gc: CanGc)

Source§

fn GetHead(&self) -> Option<DomRoot<HTMLHeadElement>>

Source§

fn GetCurrentScript(&self) -> Option<DomRoot<HTMLScriptElement>>

Source§

fn GetBody(&self) -> Option<DomRoot<HTMLElement>>

Source§

fn SetBody(&self, new_body: Option<&HTMLElement>, can_gc: CanGc) -> ErrorResult

Source§

fn GetElementsByName(&self, name: DOMString, can_gc: CanGc) -> DomRoot<NodeList>

Source§

fn Images(&self, can_gc: CanGc) -> DomRoot<HTMLCollection>

Source§

fn Embeds(&self, can_gc: CanGc) -> DomRoot<HTMLCollection>

Source§

fn Plugins(&self, can_gc: CanGc) -> DomRoot<HTMLCollection>

Source§

fn Forms(&self, can_gc: CanGc) -> DomRoot<HTMLCollection>

Source§

fn Scripts(&self, can_gc: CanGc) -> DomRoot<HTMLCollection>

Source§

fn Anchors(&self, can_gc: CanGc) -> DomRoot<HTMLCollection>

Source§

fn Applets(&self, can_gc: CanGc) -> DomRoot<HTMLCollection>

Source§

fn GetLocation(&self) -> Option<DomRoot<Location>>

Source§

fn Children(&self, can_gc: CanGc) -> DomRoot<HTMLCollection>

Source§

fn GetFirstElementChild(&self) -> Option<DomRoot<Element>>

Source§

fn GetLastElementChild(&self) -> Option<DomRoot<Element>>

Source§

fn ChildElementCount(&self) -> u32

Source§

fn Prepend( &self, nodes: Vec<NodeOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn Append( &self, nodes: Vec<NodeOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn ReplaceChildren( &self, nodes: Vec<NodeOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn QuerySelector( &self, selectors: DOMString, ) -> Fallible<Option<DomRoot<Element>>>

Source§

fn QuerySelectorAll(&self, selectors: DOMString) -> Fallible<DomRoot<NodeList>>

Source§

fn ReadyState(&self) -> DocumentReadyState

Source§

fn GetDefaultView(&self) -> Option<DomRoot<Window>>

Source§

fn GetCookie(&self) -> Fallible<DOMString>

Source§

fn SetCookie(&self, cookie: DOMString) -> ErrorResult

Source§

fn BgColor(&self) -> DOMString

Source§

fn SetBgColor(&self, value: DOMString, can_gc: CanGc)

Source§

fn FgColor(&self) -> DOMString

Source§

fn SetFgColor(&self, value: DOMString, can_gc: CanGc)

Source§

fn NamedGetter( &self, name: DOMString, can_gc: CanGc, ) -> Option<NamedPropertyValue<DomTypeHolder>>

Source§

fn SupportedPropertyNames(&self) -> Vec<DOMString>

Source§

fn Clear(&self)

Source§

fn CaptureEvents(&self)

Source§

fn ReleaseEvents(&self)

Source§

fn ElementFromPoint( &self, x: Finite<f64>, y: Finite<f64>, ) -> Option<DomRoot<Element>>

Source§

fn ElementsFromPoint( &self, x: Finite<f64>, y: Finite<f64>, ) -> Vec<DomRoot<Element>>

Source§

fn GetScrollingElement(&self) -> Option<DomRoot<Element>>

Source§

fn Open( &self, _unused1: Option<DOMString>, _unused2: Option<DOMString>, can_gc: CanGc, ) -> Fallible<DomRoot<Document>>

Source§

fn Open_( &self, url: USVString, target: DOMString, features: DOMString, can_gc: CanGc, ) -> Fallible<Option<DomRoot<WindowProxy>>>

Source§

fn Write( &self, text: Vec<TrustedHTMLOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn Writeln( &self, text: Vec<TrustedHTMLOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn Close(&self, can_gc: CanGc) -> ErrorResult

Source§

fn FullscreenEnabled(&self) -> bool

Source§

fn Fullscreen(&self) -> bool

Source§

fn GetFullscreenElement(&self) -> Option<DomRoot<Element>>

Source§

fn ExitFullscreen(&self, can_gc: CanGc) -> Rc<Promise>

Source§

fn GetSelection(&self, can_gc: CanGc) -> Option<DomRoot<Selection>>

Source§

fn Fonts(&self, can_gc: CanGc) -> DomRoot<FontFaceSet>

Source§

fn Hidden(&self) -> bool

Source§

fn VisibilityState(&self) -> DocumentVisibilityState

Source§

fn AdoptedStyleSheets( &self, context: JSContext, can_gc: CanGc, retval: MutableHandleValue<'_>, )

Source§

fn SetAdoptedStyleSheets( &self, context: JSContext, val: HandleValue<'_>, can_gc: CanGc, ) -> ErrorResult

Source§

fn GetOnblur(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnblur(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnerror(&self) -> Option<Rc<OnErrorEventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnerror( &self, listener: Option<Rc<OnErrorEventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnfocus(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnfocus(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnload(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnload(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnresize(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnresize(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnscroll(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnscroll(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnabort(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnabort(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnauxclick(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnauxclick( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnanimationstart(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnanimationstart( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnanimationiteration( &self, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnanimationiteration( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnanimationend(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnanimationend( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnanimationcancel(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnanimationcancel( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnbeforeinput(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnbeforeinput( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnbeforematch(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnbeforematch( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnbeforetoggle(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnbeforetoggle( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncancel(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncancel(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOncanplay(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncanplay(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOncanplaythrough(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncanplaythrough( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnchange(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnchange(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnclick(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnclick(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnclose(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnclose(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOncommand(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncommand(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOncontextlost(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncontextlost( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncontextmenu(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncontextmenu( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncontextrestored(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncontextrestored( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncopy(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncopy(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOncuechange(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncuechange( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncut(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncut(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOndblclick(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndblclick( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndrag(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndrag(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOndragend(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragend(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOndragenter(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragenter( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndragleave(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragleave( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndragover(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragover( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndragstart(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragstart( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndrop(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndrop(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOndurationchange(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndurationchange( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnemptied(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnemptied(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnended(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnended(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnformdata(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnformdata( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOninput(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOninput(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOninvalid(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOninvalid(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnkeydown(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnkeydown(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnkeypress(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnkeypress( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnkeyup(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnkeyup(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnloadeddata(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnloadeddata( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnloadedmetadata(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnloadedmetadata( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnloadstart(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnloadstart( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmousedown(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmousedown( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmouseenter(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmouseenter( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmouseleave(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmouseleave( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmousemove(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmousemove( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmouseout(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmouseout( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmouseover(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmouseover( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmouseup(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmouseup(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnpaste(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpaste(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnpause(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpause(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnplay(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnplay(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnplaying(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnplaying(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnprogress(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnprogress( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnratechange(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnratechange( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnreset(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnreset(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnscrollend(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnscrollend( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnsecuritypolicyviolation( &self, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnsecuritypolicyviolation( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnseeked(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnseeked(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnseeking(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnseeking(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnselect(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnselect(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnselectionchange(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnselectionchange( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnselectstart(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnselectstart( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnslotchange(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnslotchange( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnstalled(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnstalled(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnsubmit(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnsubmit(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnsuspend(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnsuspend(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOntimeupdate(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOntimeupdate( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOntoggle(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOntoggle(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOntransitioncancel( &self, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOntransitioncancel( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOntransitionend(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOntransitionend( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOntransitionrun(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOntransitionrun( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnvolumechange(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnvolumechange( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnwaiting(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnwaiting(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnwebkitanimationend( &self, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnwebkitanimationend( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnwebkitanimationiteration( &self, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnwebkitanimationiteration( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnwebkitanimationstart( &self, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnwebkitanimationstart( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnwebkittransitionend( &self, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnwebkittransitionend( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnwheel(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnwheel(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnreadystatechange( &self, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnreadystatechange( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnfullscreenerror(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnfullscreenerror( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnfullscreenchange( &self, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnfullscreenchange( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn ServoGetMediaControls(&self, id: DOMString) -> Fallible<DomRoot<ShadowRoot>>

Source§

fn CreateExpression( &self, expression: DOMString, resolver: Option<Rc<XPathNSResolver<DomTypeHolder>>>, can_gc: CanGc, ) -> Fallible<DomRoot<XPathExpression>>

Source§

fn CreateNSResolver(&self, node_resolver: &Node, can_gc: CanGc) -> DomRoot<Node>

Source§

fn Evaluate( &self, expression: DOMString, context_node: &Node, resolver: Option<Rc<XPathNSResolver<DomTypeHolder>>>, result_type: u16, result: Option<&XPathResult>, can_gc: CanGc, ) -> Fallible<DomRoot<XPathResult>>

Source§

impl DocumentTypeMethods<DomTypeHolder> for DocumentType

Source§

impl DomHelpers<DomTypeHolder> for DomTypeHolder

Source§

impl DomObjectIteratorWrap<DomTypeHolder> for CustomStateSet

Source§

const ITER_WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>, CanGc) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>> = {script_bindings::codegen::GenericBindings::ElementInternalsBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::customstateset::CustomStateSet>>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::customstateset::CustomStateSet>>>}

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for FormData

Source§

const ITER_WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>, CanGc) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>> = {script_bindings::codegen::GenericBindings::FormDataBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::formdata::FormData>>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::formdata::FormData>>>}

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for GPUSupportedFeatures

Source§

const ITER_WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>, CanGc) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::webgpu::gpusupportedfeatures::GPUSupportedFeatures>>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::webgpu::gpusupportedfeatures::GPUSupportedFeatures>>>}

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for Headers

Source§

const ITER_WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>, CanGc) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>> = {script_bindings::codegen::GenericBindings::HeadersBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::headers::Headers>>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::headers::Headers>>>}

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for TestBindingMaplikeWithInterface

Source§

const ITER_WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>, CanGc) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>> = {script_bindings::codegen::GenericBindings::TestBindingMaplikeWithInterfaceBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::testing::testbindingmaplikewithinterface::TestBindingMaplikeWithInterface>>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::testing::testbindingmaplikewithinterface::TestBindingMaplikeWithInterface>>>}

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for TestBindingMaplikeWithPrimitive

Source§

const ITER_WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>, CanGc) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>> = {script_bindings::codegen::GenericBindings::TestBindingMaplikeWithPrimitiveBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::testing::testbindingmaplikewithprimitive::TestBindingMaplikeWithPrimitive>>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::testing::testbindingmaplikewithprimitive::TestBindingMaplikeWithPrimitive>>>}

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for TestBindingPairIterable

Source§

const ITER_WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>, CanGc) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>> = {script_bindings::codegen::GenericBindings::TestBindingPairIterableBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::testing::testbindingpairiterable::TestBindingPairIterable>>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::testing::testbindingpairiterable::TestBindingPairIterable>>>}

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for TestBindingSetlikeWithInterface

Source§

const ITER_WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>, CanGc) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>> = {script_bindings::codegen::GenericBindings::TestBindingSetlikeWithInterfaceBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::testing::testbindingsetlikewithinterface::TestBindingSetlikeWithInterface>>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::testing::testbindingsetlikewithinterface::TestBindingSetlikeWithInterface>>>}

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for TestBindingSetlikeWithPrimitive

Source§

const ITER_WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>, CanGc) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>> = {script_bindings::codegen::GenericBindings::TestBindingSetlikeWithPrimitiveBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::testing::testbindingsetlikewithprimitive::TestBindingSetlikeWithPrimitive>>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::testing::testbindingsetlikewithprimitive::TestBindingSetlikeWithPrimitive>>>}

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for URLSearchParams

Source§

const ITER_WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>, CanGc) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>> = {script_bindings::codegen::GenericBindings::URLSearchParamsBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::urlsearchparams::URLSearchParams>>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::urlsearchparams::URLSearchParams>>>}

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for WGSLLanguageFeatures

Source§

const ITER_WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>, CanGc) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::webgpu::wgsllanguagefeatures::WGSLLanguageFeatures>>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::webgpu::wgsllanguagefeatures::WGSLLanguageFeatures>>>}

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for XRHand

Source§

const ITER_WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>, CanGc) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>> = {script_bindings::codegen::GenericBindings::XRHandBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::webxr::xrhand::XRHand>>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<script_bindings::iterable::IterableIterator<dom::bindings::codegen::DomTypeHolder::DomTypeHolder, dom::webxr::xrhand::XRHand>>>}

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectWrap<DomTypeHolder> for ANGLEInstancedArrays

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ANGLEInstancedArraysBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::extensions::ext::angleinstancedarrays::ANGLEInstancedArrays>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::extensions::ext::angleinstancedarrays::ANGLEInstancedArrays>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AbortController

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::AbortControllerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::abortcontroller::AbortController>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::abortcontroller::AbortController>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AbortSignal

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::AbortSignalBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::abortsignal::AbortSignal>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::abortsignal::AbortSignal>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AbstractRange

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::AbstractRangeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::abstractrange::AbstractRange>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::abstractrange::AbstractRange>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AnalyserNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::AnalyserNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::analysernode::AnalyserNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::analysernode::AnalyserNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AnimationEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::AnimationEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::animationevent::AnimationEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::animationevent::AnimationEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Attr

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::AttrBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::attr::Attr>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::attr::Attr>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioBuffer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::AudioBufferBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::audiobuffer::AudioBuffer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::audiobuffer::AudioBuffer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioBufferSourceNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::AudioBufferSourceNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::audiobuffersourcenode::AudioBufferSourceNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::audiobuffersourcenode::AudioBufferSourceNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioContext

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::AudioContextBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::audiocontext::AudioContext>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::audiocontext::AudioContext>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioDestinationNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::AudioDestinationNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::audiodestinationnode::AudioDestinationNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::audiodestinationnode::AudioDestinationNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioListener

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::AudioListenerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::audiolistener::AudioListener>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::audiolistener::AudioListener>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::AudioNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::audionode::AudioNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::audionode::AudioNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioParam

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::AudioParamBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::audioparam::AudioParam>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::audioparam::AudioParam>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioScheduledSourceNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::AudioScheduledSourceNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::audioscheduledsourcenode::AudioScheduledSourceNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::audioscheduledsourcenode::AudioScheduledSourceNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioTrack

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::AudioTrackBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::audiotrack::AudioTrack>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::audiotrack::AudioTrack>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioTrackList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::AudioTrackListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::audiotracklist::AudioTrackList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::audiotracklist::AudioTrackList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BaseAudioContext

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::BaseAudioContextBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::baseaudiocontext::BaseAudioContext>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::baseaudiocontext::BaseAudioContext>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BeforeUnloadEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::BeforeUnloadEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::beforeunloadevent::BeforeUnloadEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::beforeunloadevent::BeforeUnloadEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BiquadFilterNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::BiquadFilterNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::biquadfilternode::BiquadFilterNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::biquadfilternode::BiquadFilterNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Blob

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::BlobBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::blob::Blob>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::blob::Blob>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Bluetooth

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::BluetoothBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::bluetooth::bluetooth::Bluetooth>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::bluetooth::bluetooth::Bluetooth>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothAdvertisingEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::BluetoothAdvertisingEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::bluetooth::bluetoothadvertisingevent::BluetoothAdvertisingEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::bluetooth::bluetoothadvertisingevent::BluetoothAdvertisingEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothCharacteristicProperties

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::BluetoothCharacteristicPropertiesBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::bluetooth::bluetoothcharacteristicproperties::BluetoothCharacteristicProperties>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::bluetooth::bluetoothcharacteristicproperties::BluetoothCharacteristicProperties>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothDevice

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::BluetoothDeviceBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::bluetooth::bluetoothdevice::BluetoothDevice>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::bluetooth::bluetoothdevice::BluetoothDevice>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothPermissionResult

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::BluetoothPermissionResultBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::bluetooth::bluetoothpermissionresult::BluetoothPermissionResult>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::bluetooth::bluetoothpermissionresult::BluetoothPermissionResult>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothRemoteGATTCharacteristic

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::BluetoothRemoteGATTCharacteristicBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::bluetooth::bluetoothremotegattcharacteristic::BluetoothRemoteGATTCharacteristic>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::bluetooth::bluetoothremotegattcharacteristic::BluetoothRemoteGATTCharacteristic>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothRemoteGATTDescriptor

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::BluetoothRemoteGATTDescriptorBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::bluetooth::bluetoothremotegattdescriptor::BluetoothRemoteGATTDescriptor>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::bluetooth::bluetoothremotegattdescriptor::BluetoothRemoteGATTDescriptor>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothRemoteGATTServer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::BluetoothRemoteGATTServerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::bluetooth::bluetoothremotegattserver::BluetoothRemoteGATTServer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::bluetooth::bluetoothremotegattserver::BluetoothRemoteGATTServer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothRemoteGATTService

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::BluetoothRemoteGATTServiceBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::bluetooth::bluetoothremotegattservice::BluetoothRemoteGATTService>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::bluetooth::bluetoothremotegattservice::BluetoothRemoteGATTService>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothUUID

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::BluetoothUUIDBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::bluetooth::bluetoothuuid::BluetoothUUID>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::bluetooth::bluetoothuuid::BluetoothUUID>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BroadcastChannel

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::BroadcastChannelBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::broadcastchannel::BroadcastChannel>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::broadcastchannel::BroadcastChannel>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ByteLengthQueuingStrategy

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::QueuingStrategyBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::bytelengthqueuingstrategy::ByteLengthQueuingStrategy>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::bytelengthqueuingstrategy::ByteLengthQueuingStrategy>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ByteTeeReadIntoRequest

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ReadableStreamBYOBReaderBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::byteteereadintorequest::ByteTeeReadIntoRequest>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::byteteereadintorequest::ByteTeeReadIntoRequest>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ByteTeeReadRequest

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ReadableStreamBYOBReaderBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::byteteereadrequest::ByteTeeReadRequest>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::byteteereadrequest::ByteTeeReadRequest>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ByteTeeUnderlyingSource

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ReadableStreamBYOBReaderBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::byteteeunderlyingsource::ByteTeeUnderlyingSource>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::byteteeunderlyingsource::ByteTeeUnderlyingSource>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CDATASection

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CDATASectionBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::cdatasection::CDATASection>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::cdatasection::CDATASection>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSFontFaceRule

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CSSFontFaceRuleBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::cssfontfacerule::CSSFontFaceRule>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::cssfontfacerule::CSSFontFaceRule>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSImportRule

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CSSImportRuleBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::cssimportrule::CSSImportRule>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::cssimportrule::CSSImportRule>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSKeyframeRule

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CSSKeyframeRuleBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::csskeyframerule::CSSKeyframeRule>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::csskeyframerule::CSSKeyframeRule>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSKeyframesRule

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CSSKeyframesRuleBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::csskeyframesrule::CSSKeyframesRule>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::csskeyframesrule::CSSKeyframesRule>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSLayerBlockRule

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CSSLayerBlockRuleBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::csslayerblockrule::CSSLayerBlockRule>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::csslayerblockrule::CSSLayerBlockRule>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSLayerStatementRule

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CSSLayerStatementRuleBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::csslayerstatementrule::CSSLayerStatementRule>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::csslayerstatementrule::CSSLayerStatementRule>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSMediaRule

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CSSMediaRuleBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::cssmediarule::CSSMediaRule>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::cssmediarule::CSSMediaRule>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSNamespaceRule

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CSSNamespaceRuleBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::cssnamespacerule::CSSNamespaceRule>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::cssnamespacerule::CSSNamespaceRule>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSNestedDeclarations

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CSSNestedDeclarationsBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::cssnesteddeclarations::CSSNestedDeclarations>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::cssnesteddeclarations::CSSNestedDeclarations>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSRuleList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CSSRuleListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::cssrulelist::CSSRuleList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::cssrulelist::CSSRuleList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSStyleDeclaration

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CSSStyleDeclarationBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::cssstyledeclaration::CSSStyleDeclaration>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::cssstyledeclaration::CSSStyleDeclaration>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSStyleRule

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CSSStyleRuleBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::cssstylerule::CSSStyleRule>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::cssstylerule::CSSStyleRule>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSStyleSheet

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CSSStyleSheetBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::cssstylesheet::CSSStyleSheet>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::cssstylesheet::CSSStyleSheet>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSStyleValue

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CSSStyleValueBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::cssstylevalue::CSSStyleValue>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::cssstylevalue::CSSStyleValue>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSSupportsRule

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CSSSupportsRuleBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::csssupportsrule::CSSSupportsRule>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::csssupportsrule::CSSSupportsRule>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CanvasGradient

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CanvasRenderingContext2DBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::canvas::canvas2d::canvasgradient::CanvasGradient>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::canvas::canvas2d::canvasgradient::CanvasGradient>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CanvasPattern

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CanvasRenderingContext2DBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::canvas::canvas2d::canvaspattern::CanvasPattern>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::canvas::canvas2d::canvaspattern::CanvasPattern>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CanvasRenderingContext2D

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CanvasRenderingContext2DBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::canvas::canvas2d::canvasrenderingcontext2d::CanvasRenderingContext2D>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::canvas::canvas2d::canvasrenderingcontext2d::CanvasRenderingContext2D>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ChannelMergerNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ChannelMergerNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::channelmergernode::ChannelMergerNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::channelmergernode::ChannelMergerNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ChannelSplitterNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ChannelSplitterNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::channelsplitternode::ChannelSplitterNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::channelsplitternode::ChannelSplitterNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Client

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ClientBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::client::Client>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::client::Client>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Clipboard

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ClipboardBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::clipboard::Clipboard>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::clipboard::Clipboard>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ClipboardEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ClipboardEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::clipboardevent::ClipboardEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::clipboardevent::ClipboardEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ClipboardItem

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ClipboardBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::clipboarditem::ClipboardItem>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::clipboarditem::ClipboardItem>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CloseEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CloseEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::closeevent::CloseEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::closeevent::CloseEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CommandEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CommandEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::commandevent::CommandEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::commandevent::CommandEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Comment

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CommentBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::comment::Comment>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::comment::Comment>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CompositionEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CompositionEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::compositionevent::CompositionEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::compositionevent::CompositionEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CompressionStream

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CompressionStreamBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::compressionstream::CompressionStream>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::compressionstream::CompressionStream>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ConstantSourceNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ConstantSourceNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::constantsourcenode::ConstantSourceNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::constantsourcenode::ConstantSourceNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CookieStore

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CookieStoreBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::cookiestore::CookieStore>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::cookiestore::CookieStore>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CountQueuingStrategy

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::QueuingStrategyBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::countqueuingstrategy::CountQueuingStrategy>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::countqueuingstrategy::CountQueuingStrategy>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Credential

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CredentialBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::credentialmanagement::credential::Credential>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::credentialmanagement::credential::Credential>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CredentialsContainer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CredentialsContainerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::credentialmanagement::credentialscontainer::CredentialsContainer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::credentialmanagement::credentialscontainer::CredentialsContainer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Crypto

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CryptoBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::crypto::Crypto>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::crypto::Crypto>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CryptoKey

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CryptoKeyBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::cryptokey::CryptoKey>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::cryptokey::CryptoKey>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CustomElementRegistry

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CustomElementRegistryBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::customelementregistry::CustomElementRegistry>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::customelementregistry::CustomElementRegistry>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CustomEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CustomEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::customevent::CustomEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::customevent::CustomEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CustomStateSet

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ElementInternalsBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::customstateset::CustomStateSet>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::customstateset::CustomStateSet>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMException

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DOMExceptionBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::domexception::DOMException>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::domexception::DOMException>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMImplementation

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DOMImplementationBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::domimplementation::DOMImplementation>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::domimplementation::DOMImplementation>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMMatrix

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DOMMatrixBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::dommatrix::DOMMatrix>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::dommatrix::DOMMatrix>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMMatrixReadOnly

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DOMMatrixReadOnlyBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::dommatrixreadonly::DOMMatrixReadOnly>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::dommatrixreadonly::DOMMatrixReadOnly>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMParser

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DOMParserBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::domparser::DOMParser>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::domparser::DOMParser>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMPoint

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DOMPointBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::dompoint::DOMPoint>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::dompoint::DOMPoint>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMPointReadOnly

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DOMPointReadOnlyBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::dompointreadonly::DOMPointReadOnly>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::dompointreadonly::DOMPointReadOnly>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMQuad

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DOMQuadBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::domquad::DOMQuad>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::domquad::DOMQuad>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMRect

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DOMRectBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::domrect::DOMRect>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::domrect::DOMRect>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMRectList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DOMRectListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::domrectlist::DOMRectList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::domrectlist::DOMRectList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMRectReadOnly

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DOMRectReadOnlyBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::domrectreadonly::DOMRectReadOnly>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::domrectreadonly::DOMRectReadOnly>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMStringList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DOMStringListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::domstringlist::DOMStringList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::domstringlist::DOMStringList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMStringMap

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DOMStringMapBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::domstringmap::DOMStringMap>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::domstringmap::DOMStringMap>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMTokenList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DOMTokenListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::domtokenlist::DOMTokenList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::domtokenlist::DOMTokenList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DataTransfer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DataTransferBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::datatransfer::DataTransfer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::datatransfer::DataTransfer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DataTransferItem

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DataTransferItemBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::datatransferitem::DataTransferItem>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::datatransferitem::DataTransferItem>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DataTransferItemList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DataTransferItemListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::datatransferitemlist::DataTransferItemList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::datatransferitemlist::DataTransferItemList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DebuggerAddDebuggeeEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DebuggerAddDebuggeeEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::debuggeradddebuggeeevent::DebuggerAddDebuggeeEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::debuggeradddebuggeeevent::DebuggerAddDebuggeeEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DebuggerGetPossibleBreakpointsEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DebuggerGetPossibleBreakpointsEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::debuggergetpossiblebreakpointsevent::DebuggerGetPossibleBreakpointsEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::debuggergetpossiblebreakpointsevent::DebuggerGetPossibleBreakpointsEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DebuggerPauseEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DebuggerPauseEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::debuggerpauseevent::DebuggerPauseEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::debuggerpauseevent::DebuggerPauseEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DebuggerSetBreakpointEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DebuggerSetBreakpointEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::debuggersetbreakpointevent::DebuggerSetBreakpointEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::debuggersetbreakpointevent::DebuggerSetBreakpointEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DecompressionStream

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DecompressionStreamBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::decompressionstream::DecompressionStream>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::decompressionstream::DecompressionStream>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DefaultTeeReadRequest

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ReadableStreamDefaultReaderBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::defaultteereadrequest::DefaultTeeReadRequest>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::defaultteereadrequest::DefaultTeeReadRequest>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DefaultTeeUnderlyingSource

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ReadableStreamDefaultReaderBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::defaultteeunderlyingsource::DefaultTeeUnderlyingSource>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::defaultteeunderlyingsource::DefaultTeeUnderlyingSource>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DissimilarOriginLocation

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DissimilarOriginLocationBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::dissimilaroriginlocation::DissimilarOriginLocation>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::dissimilaroriginlocation::DissimilarOriginLocation>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Document

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DocumentBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::document::Document>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::document::Document>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DocumentFragment

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DocumentFragmentBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::documentfragment::DocumentFragment>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::documentfragment::DocumentFragment>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DocumentType

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DocumentTypeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::documenttype::DocumentType>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::documenttype::DocumentType>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DynamicModuleOwner

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DynamicModuleOwnerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::dynamicmoduleowner::DynamicModuleOwner>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::dynamicmoduleowner::DynamicModuleOwner>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for EXTBlendMinmax

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::EXTBlendMinmaxBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::extensions::ext::extblendminmax::EXTBlendMinmax>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::extensions::ext::extblendminmax::EXTBlendMinmax>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for EXTColorBufferHalfFloat

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::EXTColorBufferHalfFloatBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::extensions::ext::extcolorbufferhalffloat::EXTColorBufferHalfFloat>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::extensions::ext::extcolorbufferhalffloat::EXTColorBufferHalfFloat>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for EXTFragDepth

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::EXTFragDepthBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::extensions::ext::extfragdepth::EXTFragDepth>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::extensions::ext::extfragdepth::EXTFragDepth>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for EXTShaderTextureLod

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::EXTShaderTextureLodBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::extensions::ext::extshadertexturelod::EXTShaderTextureLod>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::extensions::ext::extshadertexturelod::EXTShaderTextureLod>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for EXTTextureFilterAnisotropic

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::EXTTextureFilterAnisotropicBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::extensions::ext::exttexturefilteranisotropic::EXTTextureFilterAnisotropic>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::extensions::ext::exttexturefilteranisotropic::EXTTextureFilterAnisotropic>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Element

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::element::Element>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::element::Element>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ElementInternals

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ElementInternalsBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::elementinternals::ElementInternals>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::elementinternals::ElementInternals>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ErrorEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ErrorEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::errorevent::ErrorEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::errorevent::ErrorEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Event

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::EventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::event::Event>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::event::Event>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for EventSource

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::EventSourceBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::eventsource::EventSource>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::eventsource::EventSource>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for EventTarget

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::EventTargetBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::eventtarget::EventTarget>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::eventtarget::EventTarget>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ExtendableEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ExtendableEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::extendableevent::ExtendableEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::extendableevent::ExtendableEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ExtendableMessageEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ExtendableMessageEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::extendablemessageevent::ExtendableMessageEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::extendablemessageevent::ExtendableMessageEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FakeXRDevice

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::FakeXRDeviceBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::fakexrdevice::FakeXRDevice>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::fakexrdevice::FakeXRDevice>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FakeXRInputController

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::FakeXRInputControllerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::fakexrinputcontroller::FakeXRInputController>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::fakexrinputcontroller::FakeXRInputController>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FetchLaterResult

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::FetchLaterResultBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::fetchlaterresult::FetchLaterResult>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::fetchlaterresult::FetchLaterResult>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for File

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::FileBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::file::File>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::file::File>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FileList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::FileListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::filelist::FileList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::filelist::FileList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FileReader

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::FileReaderBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::filereader::FileReader>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::filereader::FileReader>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FileReaderSync

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::FileReaderSyncBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::filereadersync::FileReaderSync>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::filereadersync::FileReaderSync>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FocusEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::FocusEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::focusevent::FocusEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::focusevent::FocusEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FontFace

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::FontFaceBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::fontface::FontFace>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::fontface::FontFace>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FontFaceSet

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::FontFaceSetBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::fontfaceset::FontFaceSet>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::fontfaceset::FontFaceSet>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FormData

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::FormDataBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::formdata::FormData>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::formdata::FormData>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FormDataEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::FormDataEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::formdataevent::FormDataEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::formdataevent::FormDataEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPU

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpu::GPU>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpu::GPU>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUAdapter

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpuadapter::GPUAdapter>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpuadapter::GPUAdapter>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUAdapterInfo

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpuadapterinfo::GPUAdapterInfo>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpuadapterinfo::GPUAdapterInfo>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUBindGroup

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpubindgroup::GPUBindGroup>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpubindgroup::GPUBindGroup>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUBindGroupLayout

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpubindgrouplayout::GPUBindGroupLayout>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpubindgrouplayout::GPUBindGroupLayout>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUBuffer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpubuffer::GPUBuffer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpubuffer::GPUBuffer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUCanvasContext

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::GPUCanvasContextBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpucanvascontext::GPUCanvasContext>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpucanvascontext::GPUCanvasContext>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUColorWrite

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpucolorwrite::GPUColorWrite>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpucolorwrite::GPUColorWrite>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUCommandBuffer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpucommandbuffer::GPUCommandBuffer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpucommandbuffer::GPUCommandBuffer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUCommandEncoder

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpucommandencoder::GPUCommandEncoder>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpucommandencoder::GPUCommandEncoder>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUCompilationInfo

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpucompilationinfo::GPUCompilationInfo>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpucompilationinfo::GPUCompilationInfo>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUCompilationMessage

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpucompilationmessage::GPUCompilationMessage>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpucompilationmessage::GPUCompilationMessage>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUComputePassEncoder

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpucomputepassencoder::GPUComputePassEncoder>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpucomputepassencoder::GPUComputePassEncoder>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUComputePipeline

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpucomputepipeline::GPUComputePipeline>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpucomputepipeline::GPUComputePipeline>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUDevice

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpudevice::GPUDevice>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpudevice::GPUDevice>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUDeviceLostInfo

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpudevicelostinfo::GPUDeviceLostInfo>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpudevicelostinfo::GPUDeviceLostInfo>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUError

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpuerror::GPUError>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpuerror::GPUError>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUInternalError

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpuinternalerror::GPUInternalError>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpuinternalerror::GPUInternalError>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUOutOfMemoryError

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpuoutofmemoryerror::GPUOutOfMemoryError>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpuoutofmemoryerror::GPUOutOfMemoryError>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUPipelineError

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpupipelineerror::GPUPipelineError>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpupipelineerror::GPUPipelineError>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUPipelineLayout

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpupipelinelayout::GPUPipelineLayout>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpupipelinelayout::GPUPipelineLayout>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUQuerySet

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpuqueryset::GPUQuerySet>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpuqueryset::GPUQuerySet>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUQueue

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpuqueue::GPUQueue>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpuqueue::GPUQueue>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPURenderBundle

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpurenderbundle::GPURenderBundle>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpurenderbundle::GPURenderBundle>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPURenderBundleEncoder

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpurenderbundleencoder::GPURenderBundleEncoder>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpurenderbundleencoder::GPURenderBundleEncoder>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPURenderPassEncoder

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpurenderpassencoder::GPURenderPassEncoder>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpurenderpassencoder::GPURenderPassEncoder>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPURenderPipeline

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpurenderpipeline::GPURenderPipeline>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpurenderpipeline::GPURenderPipeline>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUSampler

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpusampler::GPUSampler>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpusampler::GPUSampler>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUShaderModule

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpushadermodule::GPUShaderModule>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpushadermodule::GPUShaderModule>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUShaderStage

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpushaderstage::GPUShaderStage>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpushaderstage::GPUShaderStage>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUSupportedFeatures

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpusupportedfeatures::GPUSupportedFeatures>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpusupportedfeatures::GPUSupportedFeatures>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUSupportedLimits

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpusupportedlimits::GPUSupportedLimits>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpusupportedlimits::GPUSupportedLimits>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUTexture

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gputexture::GPUTexture>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gputexture::GPUTexture>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUTextureUsage

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gputextureusage::GPUTextureUsage>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gputextureusage::GPUTextureUsage>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUTextureView

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gputextureview::GPUTextureView>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gputextureview::GPUTextureView>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUUncapturedErrorEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpuuncapturederrorevent::GPUUncapturedErrorEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpuuncapturederrorevent::GPUUncapturedErrorEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUValidationError

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::gpuvalidationerror::GPUValidationError>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::gpuvalidationerror::GPUValidationError>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GainNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::GainNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::gainnode::GainNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::gainnode::GainNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Gamepad

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::GamepadBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::gamepad::gamepad::Gamepad>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::gamepad::gamepad::Gamepad>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GamepadButton

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::GamepadButtonBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::gamepad::gamepadbutton::GamepadButton>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::gamepad::gamepadbutton::GamepadButton>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GamepadButtonList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::GamepadButtonListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::gamepad::gamepadbuttonlist::GamepadButtonList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::gamepad::gamepadbuttonlist::GamepadButtonList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GamepadEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::GamepadEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::gamepad::gamepadevent::GamepadEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::gamepad::gamepadevent::GamepadEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GamepadHapticActuator

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::GamepadHapticActuatorBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::gamepad::gamepadhapticactuator::GamepadHapticActuator>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::gamepad::gamepadhapticactuator::GamepadHapticActuator>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GamepadPose

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::GamepadPoseBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::gamepad::gamepadpose::GamepadPose>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::gamepad::gamepadpose::GamepadPose>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Geolocation

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::GeolocationBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::geolocation::geolocation::Geolocation>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::geolocation::geolocation::Geolocation>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GeolocationCoordinates

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::GeolocationCoordinatesBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::geolocation::geolocationcoordinates::GeolocationCoordinates>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::geolocation::geolocationcoordinates::GeolocationCoordinates>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GeolocationPosition

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::GeolocationPositionBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::geolocation::geolocationposition::GeolocationPosition>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::geolocation::geolocationposition::GeolocationPosition>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GeolocationPositionError

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::GeolocationPositionErrorBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::geolocation::geolocationpositionerror::GeolocationPositionError>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::geolocation::geolocationpositionerror::GeolocationPositionError>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLAnchorElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLAnchorElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlanchorelement::HTMLAnchorElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlanchorelement::HTMLAnchorElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLAreaElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLAreaElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlareaelement::HTMLAreaElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlareaelement::HTMLAreaElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLAudioElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLAudioElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlaudioelement::HTMLAudioElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlaudioelement::HTMLAudioElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLBRElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLBRElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlbrelement::HTMLBRElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlbrelement::HTMLBRElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLBaseElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLBaseElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlbaseelement::HTMLBaseElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlbaseelement::HTMLBaseElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLBodyElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLBodyElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlbodyelement::HTMLBodyElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlbodyelement::HTMLBodyElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLButtonElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLButtonElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlbuttonelement::HTMLButtonElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlbuttonelement::HTMLButtonElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLCanvasElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLCanvasElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlcanvaselement::HTMLCanvasElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlcanvaselement::HTMLCanvasElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLCollection

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLCollectionBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlcollection::HTMLCollection>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlcollection::HTMLCollection>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLDListElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLDListElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmldlistelement::HTMLDListElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmldlistelement::HTMLDListElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLDataElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLDataElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmldataelement::HTMLDataElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmldataelement::HTMLDataElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLDataListElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLDataListElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmldatalistelement::HTMLDataListElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmldatalistelement::HTMLDataListElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLDetailsElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLDetailsElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmldetailselement::HTMLDetailsElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmldetailselement::HTMLDetailsElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLDialogElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLDialogElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmldialogelement::HTMLDialogElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmldialogelement::HTMLDialogElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLDirectoryElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLDirectoryElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmldirectoryelement::HTMLDirectoryElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmldirectoryelement::HTMLDirectoryElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLDivElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLDivElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmldivelement::HTMLDivElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmldivelement::HTMLDivElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLDocument

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLDocumentBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmldocument::HTMLDocument>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmldocument::HTMLDocument>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlelement::HTMLElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlelement::HTMLElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLEmbedElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLEmbedElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlembedelement::HTMLEmbedElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlembedelement::HTMLEmbedElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLFieldSetElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLFieldSetElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlfieldsetelement::HTMLFieldSetElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlfieldsetelement::HTMLFieldSetElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLFontElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLFontElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlfontelement::HTMLFontElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlfontelement::HTMLFontElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLFormControlsCollection

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLFormControlsCollectionBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlformcontrolscollection::HTMLFormControlsCollection>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlformcontrolscollection::HTMLFormControlsCollection>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLFormElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLFormElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlformelement::HTMLFormElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlformelement::HTMLFormElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLFrameElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLFrameElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlframeelement::HTMLFrameElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlframeelement::HTMLFrameElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLFrameSetElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLFrameSetElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlframesetelement::HTMLFrameSetElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlframesetelement::HTMLFrameSetElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLHRElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLHRElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlhrelement::HTMLHRElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlhrelement::HTMLHRElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLHeadElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLHeadElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlheadelement::HTMLHeadElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlheadelement::HTMLHeadElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLHeadingElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLHeadingElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlheadingelement::HTMLHeadingElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlheadingelement::HTMLHeadingElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLHtmlElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLHtmlElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlhtmlelement::HTMLHtmlElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlhtmlelement::HTMLHtmlElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLIFrameElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLIFrameElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmliframeelement::HTMLIFrameElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmliframeelement::HTMLIFrameElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLImageElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLImageElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlimageelement::HTMLImageElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlimageelement::HTMLImageElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLInputElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLInputElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlinputelement::HTMLInputElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlinputelement::HTMLInputElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLLIElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLLIElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmllielement::HTMLLIElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmllielement::HTMLLIElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLLabelElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLLabelElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmllabelelement::HTMLLabelElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmllabelelement::HTMLLabelElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLLegendElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLLegendElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmllegendelement::HTMLLegendElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmllegendelement::HTMLLegendElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLLinkElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLLinkElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmllinkelement::HTMLLinkElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmllinkelement::HTMLLinkElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLMapElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLMapElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlmapelement::HTMLMapElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlmapelement::HTMLMapElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLMenuElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLMenuElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlmenuelement::HTMLMenuElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlmenuelement::HTMLMenuElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLMetaElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLMetaElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlmetaelement::HTMLMetaElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlmetaelement::HTMLMetaElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLMeterElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLMeterElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlmeterelement::HTMLMeterElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlmeterelement::HTMLMeterElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLModElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLModElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlmodelement::HTMLModElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlmodelement::HTMLModElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLOListElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLOListElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlolistelement::HTMLOListElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlolistelement::HTMLOListElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLObjectElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLObjectElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlobjectelement::HTMLObjectElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlobjectelement::HTMLObjectElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLOptGroupElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLOptGroupElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmloptgroupelement::HTMLOptGroupElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmloptgroupelement::HTMLOptGroupElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLOptionElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLOptionElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmloptionelement::HTMLOptionElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmloptionelement::HTMLOptionElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLOptionsCollection

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLOptionsCollectionBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmloptionscollection::HTMLOptionsCollection>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmloptionscollection::HTMLOptionsCollection>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLOutputElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLOutputElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmloutputelement::HTMLOutputElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmloutputelement::HTMLOutputElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLParagraphElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLParagraphElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlparagraphelement::HTMLParagraphElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlparagraphelement::HTMLParagraphElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLParamElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLParamElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlparamelement::HTMLParamElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlparamelement::HTMLParamElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLPictureElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLPictureElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlpictureelement::HTMLPictureElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlpictureelement::HTMLPictureElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLPreElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLPreElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlpreelement::HTMLPreElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlpreelement::HTMLPreElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLProgressElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLProgressElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlprogresselement::HTMLProgressElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlprogresselement::HTMLProgressElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLQuoteElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLQuoteElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlquoteelement::HTMLQuoteElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlquoteelement::HTMLQuoteElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLScriptElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLScriptElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlscriptelement::HTMLScriptElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlscriptelement::HTMLScriptElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLSelectElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLSelectElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlselectelement::HTMLSelectElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlselectelement::HTMLSelectElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLSlotElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLSlotElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlslotelement::HTMLSlotElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlslotelement::HTMLSlotElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLSourceElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLSourceElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlsourceelement::HTMLSourceElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlsourceelement::HTMLSourceElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLSpanElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLSpanElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlspanelement::HTMLSpanElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlspanelement::HTMLSpanElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLStyleElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLStyleElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlstyleelement::HTMLStyleElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlstyleelement::HTMLStyleElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTableCaptionElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLTableCaptionElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmltablecaptionelement::HTMLTableCaptionElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmltablecaptionelement::HTMLTableCaptionElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTableCellElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLTableCellElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmltablecellelement::HTMLTableCellElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmltablecellelement::HTMLTableCellElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTableColElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLTableColElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmltablecolelement::HTMLTableColElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmltablecolelement::HTMLTableColElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTableElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLTableElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmltableelement::HTMLTableElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmltableelement::HTMLTableElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTableRowElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLTableRowElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmltablerowelement::HTMLTableRowElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmltablerowelement::HTMLTableRowElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTableSectionElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLTableSectionElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmltablesectionelement::HTMLTableSectionElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmltablesectionelement::HTMLTableSectionElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTemplateElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLTemplateElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmltemplateelement::HTMLTemplateElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmltemplateelement::HTMLTemplateElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTextAreaElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLTextAreaElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmltextareaelement::HTMLTextAreaElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmltextareaelement::HTMLTextAreaElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTimeElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLTimeElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmltimeelement::HTMLTimeElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmltimeelement::HTMLTimeElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTitleElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLTitleElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmltitleelement::HTMLTitleElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmltitleelement::HTMLTitleElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTrackElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLTrackElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmltrackelement::HTMLTrackElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmltrackelement::HTMLTrackElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLUListElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLUListElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlulistelement::HTMLUListElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlulistelement::HTMLUListElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLUnknownElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLUnknownElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlunknownelement::HTMLUnknownElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlunknownelement::HTMLUnknownElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLVideoElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HTMLVideoElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::html::htmlvideoelement::HTMLVideoElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::html::htmlvideoelement::HTMLVideoElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HashChangeEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HashChangeEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::hashchangeevent::HashChangeEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::hashchangeevent::HashChangeEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Headers

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HeadersBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::headers::Headers>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::headers::Headers>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for History

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::HistoryBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::history::History>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::history::History>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBCursor

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::IDBCursorBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::indexeddb::idbcursor::IDBCursor>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::indexeddb::idbcursor::IDBCursor>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBCursorWithValue

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::IDBCursorWithValueBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::indexeddb::idbcursorwithvalue::IDBCursorWithValue>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::indexeddb::idbcursorwithvalue::IDBCursorWithValue>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBDatabase

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::IDBDatabaseBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::indexeddb::idbdatabase::IDBDatabase>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::indexeddb::idbdatabase::IDBDatabase>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBFactory

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::IDBFactoryBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::indexeddb::idbfactory::IDBFactory>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::indexeddb::idbfactory::IDBFactory>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBIndex

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::IDBIndexBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::indexeddb::idbindex::IDBIndex>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::indexeddb::idbindex::IDBIndex>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBKeyRange

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::IDBKeyRangeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::indexeddb::idbkeyrange::IDBKeyRange>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::indexeddb::idbkeyrange::IDBKeyRange>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBObjectStore

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::IDBObjectStoreBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::indexeddb::idbobjectstore::IDBObjectStore>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::indexeddb::idbobjectstore::IDBObjectStore>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBOpenDBRequest

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::IDBOpenDBRequestBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::indexeddb::idbopendbrequest::IDBOpenDBRequest>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::indexeddb::idbopendbrequest::IDBOpenDBRequest>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBRequest

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::IDBRequestBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::indexeddb::idbrequest::IDBRequest>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::indexeddb::idbrequest::IDBRequest>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBTransaction

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::IDBTransactionBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::indexeddb::idbtransaction::IDBTransaction>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::indexeddb::idbtransaction::IDBTransaction>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBVersionChangeEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::IDBVersionChangeEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::indexeddb::idbversionchangeevent::IDBVersionChangeEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::indexeddb::idbversionchangeevent::IDBVersionChangeEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IIRFilterNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::IIRFilterNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::iirfilternode::IIRFilterNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::iirfilternode::IIRFilterNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ImageBitmap

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ImageBitmapBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::canvas::imagebitmap::ImageBitmap>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::canvas::imagebitmap::ImageBitmap>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ImageBitmapRenderingContext

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ImageBitmapRenderingContextBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::canvas::imagebitmaprenderingcontext::ImageBitmapRenderingContext>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::canvas::imagebitmaprenderingcontext::ImageBitmapRenderingContext>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ImageData

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CanvasRenderingContext2DBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::canvas::imagedata::ImageData>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::canvas::imagedata::ImageData>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for InputEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::InputEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::inputevent::InputEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::inputevent::InputEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IntersectionObserver

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::IntersectionObserverBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::intersectionobserver::IntersectionObserver>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::intersectionobserver::IntersectionObserver>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IntersectionObserverEntry

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::IntersectionObserverEntryBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::intersectionobserverentry::IntersectionObserverEntry>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::intersectionobserverentry::IntersectionObserverEntry>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for KeyboardEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::KeyboardEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::keyboardevent::KeyboardEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::keyboardevent::KeyboardEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for LargestContentfulPaint

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::LargestContentfulPaintBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::performance::largestcontentfulpaint::LargestContentfulPaint>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::performance::largestcontentfulpaint::LargestContentfulPaint>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Location

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::LocationBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::location::Location>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::location::Location>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaDeviceInfo

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MediaDeviceInfoBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::media::mediadeviceinfo::MediaDeviceInfo>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::media::mediadeviceinfo::MediaDeviceInfo>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaDevices

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MediaDevicesBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::media::mediadevices::MediaDevices>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::media::mediadevices::MediaDevices>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaElementAudioSourceNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MediaElementAudioSourceNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::mediaelementaudiosourcenode::MediaElementAudioSourceNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::mediaelementaudiosourcenode::MediaElementAudioSourceNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaError

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MediaErrorBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::media::mediaerror::MediaError>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::media::mediaerror::MediaError>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MediaListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::media::medialist::MediaList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::media::medialist::MediaList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaMetadata

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MediaMetadataBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::media::mediametadata::MediaMetadata>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::media::mediametadata::MediaMetadata>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaQueryList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MediaQueryListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::media::mediaquerylist::MediaQueryList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::media::mediaquerylist::MediaQueryList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaQueryListEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MediaQueryListEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::media::mediaquerylistevent::MediaQueryListEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::media::mediaquerylistevent::MediaQueryListEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaSession

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MediaSessionBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::media::mediasession::MediaSession>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::media::mediasession::MediaSession>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaStream

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MediaStreamBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::media::mediastream::MediaStream>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::media::mediastream::MediaStream>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaStreamAudioDestinationNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MediaStreamAudioDestinationNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::mediastreamaudiodestinationnode::MediaStreamAudioDestinationNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::mediastreamaudiodestinationnode::MediaStreamAudioDestinationNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaStreamAudioSourceNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MediaStreamAudioSourceNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::mediastreamaudiosourcenode::MediaStreamAudioSourceNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::mediastreamaudiosourcenode::MediaStreamAudioSourceNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaStreamTrack

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MediaStreamTrackBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::media::mediastreamtrack::MediaStreamTrack>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::media::mediastreamtrack::MediaStreamTrack>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaStreamTrackAudioSourceNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MediaStreamTrackAudioSourceNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::mediastreamtrackaudiosourcenode::MediaStreamTrackAudioSourceNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::mediastreamtrackaudiosourcenode::MediaStreamTrackAudioSourceNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MessageChannel

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MessageChannelBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::messagechannel::MessageChannel>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::messagechannel::MessageChannel>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MessageEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MessageEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::messageevent::MessageEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::messageevent::MessageEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MessagePort

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MessagePortBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::messageport::MessagePort>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::messageport::MessagePort>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MimeType

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MimeTypeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::mimetype::MimeType>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::mimetype::MimeType>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MimeTypeArray

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MimeTypeArrayBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::mimetypearray::MimeTypeArray>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::mimetypearray::MimeTypeArray>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MouseEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MouseEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::mouseevent::MouseEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::mouseevent::MouseEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MutationObserver

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MutationObserverBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::mutationobserver::MutationObserver>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::mutationobserver::MutationObserver>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MutationRecord

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::MutationRecordBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::mutationrecord::MutationRecord>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::mutationrecord::MutationRecord>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for NamedNodeMap

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::NamedNodeMapBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::namednodemap::NamedNodeMap>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::namednodemap::NamedNodeMap>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for NavigationPreloadManager

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::NavigationPreloadManagerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::navigationpreloadmanager::NavigationPreloadManager>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::navigationpreloadmanager::NavigationPreloadManager>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Navigator

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::NavigatorBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::navigator::Navigator>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::navigator::Navigator>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for NodeIterator

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::NodeIteratorBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::nodeiterator::NodeIterator>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::nodeiterator::NodeIterator>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for NodeList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::NodeListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::nodelist::NodeList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::nodelist::NodeList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Notification

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::NotificationBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::notification::Notification>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::notification::Notification>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OESElementIndexUint

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::OESElementIndexUintBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::extensions::ext::oeselementindexuint::OESElementIndexUint>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::extensions::ext::oeselementindexuint::OESElementIndexUint>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OESStandardDerivatives

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::OESStandardDerivativesBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::extensions::ext::oesstandardderivatives::OESStandardDerivatives>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::extensions::ext::oesstandardderivatives::OESStandardDerivatives>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OESTextureFloat

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::OESTextureFloatBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::extensions::ext::oestexturefloat::OESTextureFloat>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::extensions::ext::oestexturefloat::OESTextureFloat>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OESTextureFloatLinear

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::OESTextureFloatLinearBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::extensions::ext::oestexturefloatlinear::OESTextureFloatLinear>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::extensions::ext::oestexturefloatlinear::OESTextureFloatLinear>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OESTextureHalfFloat

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::OESTextureHalfFloatBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::extensions::ext::oestexturehalffloat::OESTextureHalfFloat>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::extensions::ext::oestexturehalffloat::OESTextureHalfFloat>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OESTextureHalfFloatLinear

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::OESTextureHalfFloatLinearBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::extensions::ext::oestexturehalffloatlinear::OESTextureHalfFloatLinear>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::extensions::ext::oestexturehalffloatlinear::OESTextureHalfFloatLinear>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OESVertexArrayObject

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::OESVertexArrayObjectBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::extensions::ext::oesvertexarrayobject::OESVertexArrayObject>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::extensions::ext::oesvertexarrayobject::OESVertexArrayObject>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OfflineAudioCompletionEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::OfflineAudioCompletionEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::offlineaudiocompletionevent::OfflineAudioCompletionEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::offlineaudiocompletionevent::OfflineAudioCompletionEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OfflineAudioContext

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::OfflineAudioContextBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::offlineaudiocontext::OfflineAudioContext>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::offlineaudiocontext::OfflineAudioContext>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OffscreenCanvas

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::OffscreenCanvasBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::canvas::offscreencanvas::OffscreenCanvas>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::canvas::offscreencanvas::OffscreenCanvas>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OffscreenCanvasRenderingContext2D

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::OffscreenCanvasRenderingContext2DBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::canvas::canvas2d::offscreencanvasrenderingcontext2d::OffscreenCanvasRenderingContext2D>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::canvas::canvas2d::offscreencanvasrenderingcontext2d::OffscreenCanvasRenderingContext2D>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Origin

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::OriginBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::origin::Origin>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::origin::Origin>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OscillatorNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::OscillatorNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::oscillatornode::OscillatorNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::oscillatornode::OscillatorNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PageTransitionEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PageTransitionEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::pagetransitionevent::PageTransitionEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::pagetransitionevent::PageTransitionEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PaintRenderingContext2D

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PaintRenderingContext2DBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::canvas::canvas2d::paintrenderingcontext2d::PaintRenderingContext2D>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::canvas::canvas2d::paintrenderingcontext2d::PaintRenderingContext2D>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PaintSize

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PaintSizeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::paintsize::PaintSize>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::paintsize::PaintSize>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PannerNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PannerNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::pannernode::PannerNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::pannernode::PannerNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PasswordCredential

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PasswordCredentialBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::credentialmanagement::passwordcredential::PasswordCredential>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::credentialmanagement::passwordcredential::PasswordCredential>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Path2D

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::CanvasRenderingContext2DBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::canvas::canvas2d::path2d::Path2D>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::canvas::canvas2d::path2d::Path2D>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Performance

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PerformanceBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::performance::performance::Performance>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::performance::performance::Performance>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformanceEntry

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PerformanceEntryBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::performance::performanceentry::PerformanceEntry>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::performance::performanceentry::PerformanceEntry>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformanceMark

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PerformanceMarkBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::performance::performancemark::PerformanceMark>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::performance::performancemark::PerformanceMark>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformanceMeasure

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PerformanceMeasureBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::performance::performancemeasure::PerformanceMeasure>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::performance::performancemeasure::PerformanceMeasure>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformanceNavigation

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PerformanceNavigationBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::performance::performancenavigation::PerformanceNavigation>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::performance::performancenavigation::PerformanceNavigation>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformanceNavigationTiming

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PerformanceNavigationTimingBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::performance::performancenavigationtiming::PerformanceNavigationTiming>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::performance::performancenavigationtiming::PerformanceNavigationTiming>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformanceObserver

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PerformanceObserverBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::performance::performanceobserver::PerformanceObserver>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::performance::performanceobserver::PerformanceObserver>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformanceObserverEntryList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PerformanceObserverEntryListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::performance::performanceobserverentrylist::PerformanceObserverEntryList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::performance::performanceobserverentrylist::PerformanceObserverEntryList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformancePaintTiming

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PerformancePaintTimingBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::performance::performancepainttiming::PerformancePaintTiming>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::performance::performancepainttiming::PerformancePaintTiming>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformanceResourceTiming

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PerformanceResourceTimingBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::performance::performanceresourcetiming::PerformanceResourceTiming>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::performance::performanceresourcetiming::PerformanceResourceTiming>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PermissionStatus

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PermissionStatusBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::permissionstatus::PermissionStatus>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::permissionstatus::PermissionStatus>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Permissions

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PermissionsBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::permissions::Permissions>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::permissions::Permissions>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PipelineId

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::DebuggerAddDebuggeeEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::pipelineid::PipelineId>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::pipelineid::PipelineId>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Plugin

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PluginBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::plugin::Plugin>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::plugin::Plugin>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PluginArray

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PluginArrayBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::pluginarray::PluginArray>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::pluginarray::PluginArray>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PointerEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PointerEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::pointerevent::PointerEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::pointerevent::PointerEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PopStateEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PopStateEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::popstateevent::PopStateEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::popstateevent::PopStateEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ProcessingInstruction

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ProcessingInstructionBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::processinginstruction::ProcessingInstruction>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::processinginstruction::ProcessingInstruction>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ProgressEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ProgressEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::progressevent::ProgressEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::progressevent::ProgressEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PromiseNativeHandler

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PromiseNativeHandlerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::promisenativehandler::PromiseNativeHandler>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::promisenativehandler::PromiseNativeHandler>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PromiseRejectionEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::PromiseRejectionEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::promiserejectionevent::PromiseRejectionEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::promiserejectionevent::PromiseRejectionEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for QuotaExceededError

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::QuotaExceededErrorBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::quotaexceedederror::QuotaExceededError>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::quotaexceedederror::QuotaExceededError>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCDataChannel

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::RTCDataChannelBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webrtc::rtcdatachannel::RTCDataChannel>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webrtc::rtcdatachannel::RTCDataChannel>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCDataChannelEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::RTCDataChannelEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webrtc::rtcdatachannelevent::RTCDataChannelEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webrtc::rtcdatachannelevent::RTCDataChannelEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCError

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::RTCErrorBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webrtc::rtcerror::RTCError>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webrtc::rtcerror::RTCError>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCErrorEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::RTCErrorEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webrtc::rtcerrorevent::RTCErrorEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webrtc::rtcerrorevent::RTCErrorEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCIceCandidate

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::RTCIceCandidateBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webrtc::rtcicecandidate::RTCIceCandidate>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webrtc::rtcicecandidate::RTCIceCandidate>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCPeerConnection

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::RTCPeerConnectionBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webrtc::rtcpeerconnection::RTCPeerConnection>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webrtc::rtcpeerconnection::RTCPeerConnection>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCPeerConnectionIceEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::RTCPeerConnectionIceEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webrtc::rtcpeerconnectioniceevent::RTCPeerConnectionIceEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webrtc::rtcpeerconnectioniceevent::RTCPeerConnectionIceEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCRtpSender

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::RTCRtpSenderBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webrtc::rtcrtpsender::RTCRtpSender>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webrtc::rtcrtpsender::RTCRtpSender>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCRtpTransceiver

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::RTCRtpTransceiverBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webrtc::rtcrtptransceiver::RTCRtpTransceiver>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webrtc::rtcrtptransceiver::RTCRtpTransceiver>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCSessionDescription

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::RTCSessionDescriptionBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webrtc::rtcsessiondescription::RTCSessionDescription>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webrtc::rtcsessiondescription::RTCSessionDescription>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCTrackEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::RTCTrackEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webrtc::rtctrackevent::RTCTrackEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webrtc::rtctrackevent::RTCTrackEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RadioNodeList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::RadioNodeListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::radionodelist::RadioNodeList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::radionodelist::RadioNodeList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Range

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::RangeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::range::Range>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::range::Range>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ReadableByteStreamController

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ReadableByteStreamControllerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::readablebytestreamcontroller::ReadableByteStreamController>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::readablebytestreamcontroller::ReadableByteStreamController>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ReadableStream

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ReadableStreamBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::readablestream::ReadableStream>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::readablestream::ReadableStream>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ReadableStreamBYOBReader

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ReadableStreamBYOBReaderBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::readablestreambyobreader::ReadableStreamBYOBReader>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::readablestreambyobreader::ReadableStreamBYOBReader>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ReadableStreamBYOBRequest

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ReadableStreamBYOBRequestBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::readablestreambyobrequest::ReadableStreamBYOBRequest>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::readablestreambyobrequest::ReadableStreamBYOBRequest>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ReadableStreamDefaultController

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ReadableStreamDefaultControllerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::readablestreamdefaultcontroller::ReadableStreamDefaultController>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::readablestreamdefaultcontroller::ReadableStreamDefaultController>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ReadableStreamDefaultReader

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ReadableStreamDefaultReaderBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::readablestreamdefaultreader::ReadableStreamDefaultReader>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::readablestreamdefaultreader::ReadableStreamDefaultReader>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ReportingObserver

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ReportingObserverBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::reportingobserver::ReportingObserver>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::reportingobserver::ReportingObserver>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Request

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::RequestBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::request::Request>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::request::Request>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ResizeObserver

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ResizeObserverBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::resizeobserver::ResizeObserver>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::resizeobserver::ResizeObserver>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ResizeObserverEntry

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ResizeObserverEntryBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::resizeobserverentry::ResizeObserverEntry>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::resizeobserverentry::ResizeObserverEntry>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ResizeObserverSize

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ResizeObserverSizeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::resizeobserversize::ResizeObserverSize>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::resizeobserversize::ResizeObserverSize>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Response

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ResponseBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::response::Response>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::response::Response>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for SVGElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::SVGElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::svg::svgelement::SVGElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::svg::svgelement::SVGElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for SVGImageElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::SVGImageElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::svg::svgimageelement::SVGImageElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::svg::svgimageelement::SVGImageElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for SVGSVGElement

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::SVGSVGElementBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::svg::svgsvgelement::SVGSVGElement>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::svg::svgsvgelement::SVGSVGElement>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Screen

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ScreenBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::screen::Screen>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::screen::Screen>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for SecurityPolicyViolationEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::SecurityPolicyViolationEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::security::securitypolicyviolationevent::SecurityPolicyViolationEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::security::securitypolicyviolationevent::SecurityPolicyViolationEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Selection

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::SelectionBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::selection::Selection>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::selection::Selection>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ServiceWorker

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ServiceWorkerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::workers::serviceworker::ServiceWorker>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::workers::serviceworker::ServiceWorker>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ServiceWorkerContainer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ServiceWorkerContainerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::workers::serviceworkercontainer::ServiceWorkerContainer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::workers::serviceworkercontainer::ServiceWorkerContainer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ServiceWorkerRegistration

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ServiceWorkerRegistrationBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::workers::serviceworkerregistration::ServiceWorkerRegistration>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::workers::serviceworkerregistration::ServiceWorkerRegistration>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ServoInternals

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ServoInternalsBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::servointernals::ServoInternals>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::servointernals::ServoInternals>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ServoParser

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ServoParserBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::servoparser::ServoParser>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::servoparser::ServoParser>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ShadowRoot

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ShadowRootBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::shadowroot::ShadowRoot>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::shadowroot::ShadowRoot>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for StaticRange

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::StaticRangeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::staticrange::StaticRange>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::staticrange::StaticRange>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for StereoPannerNode

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::StereoPannerNodeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::audio::stereopannernode::StereoPannerNode>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::audio::stereopannernode::StereoPannerNode>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Storage

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::StorageBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::storage::Storage>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::storage::Storage>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for StorageEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::StorageEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::storageevent::StorageEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::storageevent::StorageEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for StylePropertyMapReadOnly

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::StylePropertyMapReadOnlyBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::stylepropertymapreadonly::StylePropertyMapReadOnly>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::stylepropertymapreadonly::StylePropertyMapReadOnly>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for StyleSheet

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::StyleSheetBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::stylesheet::StyleSheet>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::stylesheet::StyleSheet>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for StyleSheetList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::StyleSheetListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::css::stylesheetlist::StyleSheetList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::css::stylesheetlist::StyleSheetList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for SubmitEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::SubmitEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::submitevent::SubmitEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::submitevent::SubmitEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for SubtleCrypto

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::SubtleCryptoBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::subtlecrypto::SubtleCrypto>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::subtlecrypto::SubtleCrypto>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestBinding

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TestBindingBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::testing::testbinding::TestBinding>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::testing::testbinding::TestBinding>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestBindingIterable

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TestBindingIterableBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::testing::testbindingiterable::TestBindingIterable>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::testing::testbindingiterable::TestBindingIterable>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestBindingMaplikeWithInterface

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TestBindingMaplikeWithInterfaceBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::testing::testbindingmaplikewithinterface::TestBindingMaplikeWithInterface>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::testing::testbindingmaplikewithinterface::TestBindingMaplikeWithInterface>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestBindingMaplikeWithPrimitive

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TestBindingMaplikeWithPrimitiveBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::testing::testbindingmaplikewithprimitive::TestBindingMaplikeWithPrimitive>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::testing::testbindingmaplikewithprimitive::TestBindingMaplikeWithPrimitive>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestBindingPairIterable

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TestBindingPairIterableBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::testing::testbindingpairiterable::TestBindingPairIterable>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::testing::testbindingpairiterable::TestBindingPairIterable>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestBindingProxy

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TestBindingProxyBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::testing::testbindingproxy::TestBindingProxy>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::testing::testbindingproxy::TestBindingProxy>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestBindingSetlikeWithInterface

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TestBindingSetlikeWithInterfaceBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::testing::testbindingsetlikewithinterface::TestBindingSetlikeWithInterface>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::testing::testbindingsetlikewithinterface::TestBindingSetlikeWithInterface>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestBindingSetlikeWithPrimitive

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TestBindingSetlikeWithPrimitiveBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::testing::testbindingsetlikewithprimitive::TestBindingSetlikeWithPrimitive>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::testing::testbindingsetlikewithprimitive::TestBindingSetlikeWithPrimitive>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestRunner

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TestRunnerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::bluetooth::testrunner::TestRunner>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::bluetooth::testrunner::TestRunner>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestWorklet

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TestWorkletBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::testing::testworklet::TestWorklet>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::testing::testworklet::TestWorklet>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Text

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TextBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::text::Text>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::text::Text>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextDecoder

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TextDecoderBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::textdecoder::TextDecoder>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::textdecoder::TextDecoder>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextDecoderStream

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TextDecoderStreamBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::textdecoderstream::TextDecoderStream>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::textdecoderstream::TextDecoderStream>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextEncoder

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TextEncoderBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::textencoder::TextEncoder>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::textencoder::TextEncoder>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextEncoderStream

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TextEncoderStreamBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::textencoderstream::TextEncoderStream>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::textencoderstream::TextEncoderStream>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextMetrics

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TextMetricsBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::canvas::canvas2d::textmetrics::TextMetrics>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::canvas::canvas2d::textmetrics::TextMetrics>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextTrack

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TextTrackBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::texttrack::TextTrack>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::texttrack::TextTrack>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextTrackCue

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TextTrackCueBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::texttrackcue::TextTrackCue>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::texttrackcue::TextTrackCue>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextTrackCueList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TextTrackCueListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::texttrackcuelist::TextTrackCueList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::texttrackcuelist::TextTrackCueList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextTrackList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TextTrackListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::texttracklist::TextTrackList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::texttracklist::TextTrackList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TimeRanges

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TimeRangesBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::timeranges::TimeRanges>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::timeranges::TimeRanges>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ToggleEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ToggleEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::toggleevent::ToggleEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::toggleevent::ToggleEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Touch

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TouchBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::touch::Touch>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::touch::Touch>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TouchEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TouchEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::touchevent::TouchEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::touchevent::TouchEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TouchList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TouchListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::touchlist::TouchList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::touchlist::TouchList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TrackEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TrackEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::trackevent::TrackEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::trackevent::TrackEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TransformStream

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TransformStreamBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::transformstream::TransformStream>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::transformstream::TransformStream>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TransformStreamDefaultController

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TransformStreamDefaultControllerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::transformstreamdefaultcontroller::TransformStreamDefaultController>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::transformstreamdefaultcontroller::TransformStreamDefaultController>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TransitionEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TransitionEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::transitionevent::TransitionEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::transitionevent::TransitionEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TreeWalker

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TreeWalkerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::treewalker::TreeWalker>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::treewalker::TreeWalker>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TrustedHTML

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TrustedHTMLBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::trustedhtml::TrustedHTML>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::trustedhtml::TrustedHTML>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TrustedScript

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TrustedScriptBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::trustedscript::TrustedScript>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::trustedscript::TrustedScript>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TrustedScriptURL

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TrustedScriptURLBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::trustedscripturl::TrustedScriptURL>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::trustedscripturl::TrustedScriptURL>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TrustedTypePolicy

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TrustedTypePolicyBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::trustedtypepolicy::TrustedTypePolicy>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::trustedtypepolicy::TrustedTypePolicy>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TrustedTypePolicyFactory

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::TrustedTypePolicyFactoryBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::trustedtypepolicyfactory::TrustedTypePolicyFactory>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::trustedtypepolicyfactory::TrustedTypePolicyFactory>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for UIEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::UIEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::uievent::UIEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::uievent::UIEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for URL

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::URLBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::url::URL>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::url::URL>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for URLPattern

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::URLPatternBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::urlpattern::URLPattern>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::urlpattern::URLPattern>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for URLSearchParams

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::URLSearchParamsBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::urlsearchparams::URLSearchParams>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::urlsearchparams::URLSearchParams>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for UnderlyingSourceContainer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::UnderlyingSourceContainerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::underlyingsourcecontainer::UnderlyingSourceContainer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::underlyingsourcecontainer::UnderlyingSourceContainer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for VTTCue

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::VTTCueBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::vttcue::VTTCue>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::vttcue::VTTCue>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for VTTRegion

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::VTTRegionBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::vttregion::VTTRegion>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::vttregion::VTTRegion>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ValidityState

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::ValidityStateBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::validitystate::ValidityState>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::validitystate::ValidityState>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for VideoTrack

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::VideoTrackBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::videotrack::VideoTrack>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::videotrack::VideoTrack>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for VideoTrackList

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::VideoTrackListBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::videotracklist::VideoTrackList>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::videotracklist::VideoTrackList>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for VisibilityStateEntry

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::VisibilityStateEntryBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::visibilitystateentry::VisibilityStateEntry>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::visibilitystateentry::VisibilityStateEntry>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for VisualViewport

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::VisualViewportBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::visualviewport::VisualViewport>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::visualviewport::VisualViewport>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WEBGLColorBufferFloat

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WEBGLColorBufferFloatBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::extensions::ext::webglcolorbufferfloat::WEBGLColorBufferFloat>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::extensions::ext::webglcolorbufferfloat::WEBGLColorBufferFloat>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WEBGLCompressedTextureETC1

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WEBGLCompressedTextureETC1Binding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::extensions::ext::webglcompressedtextureetc1::WEBGLCompressedTextureETC1>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::extensions::ext::webglcompressedtextureetc1::WEBGLCompressedTextureETC1>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WEBGLCompressedTextureS3TC

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WEBGLCompressedTextureS3TCBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::extensions::ext::webglcompressedtextures3tc::WEBGLCompressedTextureS3TC>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::extensions::ext::webglcompressedtextures3tc::WEBGLCompressedTextureS3TC>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WGSLLanguageFeatures

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGPUBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgpu::wgsllanguagefeatures::WGSLLanguageFeatures>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgpu::wgsllanguagefeatures::WGSLLanguageFeatures>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGL2RenderingContext

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGL2RenderingContextBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webgl2renderingcontext::WebGL2RenderingContext>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webgl2renderingcontext::WebGL2RenderingContext>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLActiveInfo

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLActiveInfoBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webglactiveinfo::WebGLActiveInfo>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webglactiveinfo::WebGLActiveInfo>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLBuffer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLBufferBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webglbuffer::WebGLBuffer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webglbuffer::WebGLBuffer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLContextEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLContextEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webglcontextevent::WebGLContextEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webglcontextevent::WebGLContextEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLFramebuffer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLFramebufferBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webglframebuffer::WebGLFramebuffer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webglframebuffer::WebGLFramebuffer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLProgram

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLProgramBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webglprogram::WebGLProgram>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webglprogram::WebGLProgram>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLQuery

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLQueryBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webglquery::WebGLQuery>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webglquery::WebGLQuery>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLRenderbuffer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLRenderbufferBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webglrenderbuffer::WebGLRenderbuffer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webglrenderbuffer::WebGLRenderbuffer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLRenderingContext

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLRenderingContextBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webglrenderingcontext::WebGLRenderingContext>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webglrenderingcontext::WebGLRenderingContext>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLSampler

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLSamplerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webglsampler::WebGLSampler>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webglsampler::WebGLSampler>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLShader

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLShaderBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webglshader::WebGLShader>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webglshader::WebGLShader>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLShaderPrecisionFormat

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLShaderPrecisionFormatBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webglshaderprecisionformat::WebGLShaderPrecisionFormat>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webglshaderprecisionformat::WebGLShaderPrecisionFormat>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLSync

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLSyncBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webglsync::WebGLSync>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webglsync::WebGLSync>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLTexture

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLTextureBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webgltexture::WebGLTexture>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webgltexture::WebGLTexture>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLTransformFeedback

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLTransformFeedbackBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webgltransformfeedback::WebGLTransformFeedback>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webgltransformfeedback::WebGLTransformFeedback>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLUniformLocation

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLUniformLocationBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webgluniformlocation::WebGLUniformLocation>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webgluniformlocation::WebGLUniformLocation>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLVertexArrayObject

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLVertexArrayObjectBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webglvertexarrayobject::WebGLVertexArrayObject>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webglvertexarrayobject::WebGLVertexArrayObject>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLVertexArrayObjectOES

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebGLVertexArrayObjectOESBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webgl::webglvertexarrayobjectoes::WebGLVertexArrayObjectOES>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webgl::webglvertexarrayobjectoes::WebGLVertexArrayObjectOES>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebSocket

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WebSocketBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::websocket::WebSocket>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::websocket::WebSocket>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WheelEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WheelEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::wheelevent::WheelEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::wheelevent::WheelEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Worker

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WorkerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::workers::worker::Worker>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::workers::worker::Worker>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WorkerLocation

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WorkerLocationBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::workers::workerlocation::WorkerLocation>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::workers::workerlocation::WorkerLocation>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WorkerNavigator

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WorkerNavigatorBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::workers::workernavigator::WorkerNavigator>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::workers::workernavigator::WorkerNavigator>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Worklet

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WorkletBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::worklet::Worklet>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::worklet::Worklet>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WorkletGlobalScope

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WorkletGlobalScopeBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::workletglobalscope::WorkletGlobalScope>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::workletglobalscope::WorkletGlobalScope>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WritableStream

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WritableStreamBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::writablestream::WritableStream>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::writablestream::WritableStream>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WritableStreamDefaultController

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WritableStreamDefaultControllerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::writablestreamdefaultcontroller::WritableStreamDefaultController>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::writablestreamdefaultcontroller::WritableStreamDefaultController>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WritableStreamDefaultWriter

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::WritableStreamDefaultWriterBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::writablestreamdefaultwriter::WritableStreamDefaultWriter>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::writablestreamdefaultwriter::WritableStreamDefaultWriter>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XMLDocument

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XMLDocumentBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::xmldocument::XMLDocument>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::xmldocument::XMLDocument>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XMLHttpRequest

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XMLHttpRequestBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::xmlhttprequest::XMLHttpRequest>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::xmlhttprequest::XMLHttpRequest>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XMLHttpRequestUpload

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XMLHttpRequestUploadBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::xmlhttprequestupload::XMLHttpRequestUpload>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::xmlhttprequestupload::XMLHttpRequestUpload>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XMLSerializer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XMLSerializerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::xmlserializer::XMLSerializer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::xmlserializer::XMLSerializer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XPathEvaluator

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XPathEvaluatorBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::xpathevaluator::XPathEvaluator>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::xpathevaluator::XPathEvaluator>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XPathExpression

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XPathExpressionBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::xpathexpression::XPathExpression>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::xpathexpression::XPathExpression>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XPathResult

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XPathResultBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::xpathresult::XPathResult>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::xpathresult::XPathResult>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRBoundedReferenceSpace

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRBoundedReferenceSpaceBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrboundedreferencespace::XRBoundedReferenceSpace>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrboundedreferencespace::XRBoundedReferenceSpace>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRCompositionLayer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRCompositionLayerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrcompositionlayer::XRCompositionLayer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrcompositionlayer::XRCompositionLayer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRCubeLayer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRCubeLayerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrcubelayer::XRCubeLayer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrcubelayer::XRCubeLayer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRCylinderLayer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRCylinderLayerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrcylinderlayer::XRCylinderLayer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrcylinderlayer::XRCylinderLayer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XREquirectLayer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XREquirectLayerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrequirectlayer::XREquirectLayer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrequirectlayer::XREquirectLayer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRFrame

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRFrameBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrframe::XRFrame>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrframe::XRFrame>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRHand

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRHandBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrhand::XRHand>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrhand::XRHand>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRHitTestResult

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRHitTestResultBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrhittestresult::XRHitTestResult>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrhittestresult::XRHitTestResult>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRHitTestSource

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRHitTestSourceBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrhittestsource::XRHitTestSource>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrhittestsource::XRHitTestSource>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRInputSource

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRInputSourceBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrinputsource::XRInputSource>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrinputsource::XRInputSource>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRInputSourceArray

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRInputSourceArrayBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrinputsourcearray::XRInputSourceArray>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrinputsourcearray::XRInputSourceArray>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRInputSourceEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRInputSourceEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrinputsourceevent::XRInputSourceEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrinputsourceevent::XRInputSourceEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRInputSourcesChangeEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRInputSourcesChangeEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrinputsourceschangeevent::XRInputSourcesChangeEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrinputsourceschangeevent::XRInputSourcesChangeEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRJointPose

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRJointPoseBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrjointpose::XRJointPose>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrjointpose::XRJointPose>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRJointSpace

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRJointSpaceBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrjointspace::XRJointSpace>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrjointspace::XRJointSpace>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRLayer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRLayerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrlayer::XRLayer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrlayer::XRLayer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRLayerEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRLayerEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrlayerevent::XRLayerEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrlayerevent::XRLayerEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRMediaBinding

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRMediaBindingBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrmediabinding::XRMediaBinding>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrmediabinding::XRMediaBinding>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRPose

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRPoseBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrpose::XRPose>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrpose::XRPose>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRProjectionLayer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRProjectionLayerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrprojectionlayer::XRProjectionLayer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrprojectionlayer::XRProjectionLayer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRQuadLayer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRQuadLayerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrquadlayer::XRQuadLayer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrquadlayer::XRQuadLayer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRRay

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRRayBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrray::XRRay>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrray::XRRay>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRReferenceSpace

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRReferenceSpaceBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrreferencespace::XRReferenceSpace>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrreferencespace::XRReferenceSpace>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRReferenceSpaceEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRReferenceSpaceEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrreferencespaceevent::XRReferenceSpaceEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrreferencespaceevent::XRReferenceSpaceEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRRenderState

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRRenderStateBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrrenderstate::XRRenderState>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrrenderstate::XRRenderState>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRRigidTransform

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRRigidTransformBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrrigidtransform::XRRigidTransform>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrrigidtransform::XRRigidTransform>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRSession

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRSessionBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrsession::XRSession>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrsession::XRSession>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRSessionEvent

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRSessionEventBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrsessionevent::XRSessionEvent>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrsessionevent::XRSessionEvent>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRSpace

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRSpaceBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrspace::XRSpace>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrspace::XRSpace>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRSubImage

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRSubImageBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrsubimage::XRSubImage>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrsubimage::XRSubImage>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRSystem

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRSystemBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrsystem::XRSystem>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrsystem::XRSystem>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRTest

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRTestBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrtest::XRTest>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrtest::XRTest>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRView

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRViewBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrview::XRView>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrview::XRView>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRViewerPose

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRViewerPoseBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrviewerpose::XRViewerPose>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrviewerpose::XRViewerPose>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRViewport

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRViewportBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrviewport::XRViewport>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrviewport::XRViewport>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRWebGLBinding

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRWebGLBindingBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrwebglbinding::XRWebGLBinding>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrwebglbinding::XRWebGLBinding>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRWebGLLayer

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRWebGLLayerBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrwebgllayer::XRWebGLLayer>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrwebgllayer::XRWebGLLayer>>}

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRWebGLSubImage

Source§

const WRAP: unsafe fn(SafeJSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>, CanGc) -> Root<Dom<Self>> = {script_bindings::codegen::GenericBindings::XRWebGLSubImageBinding::Wrap::<dom::bindings::codegen::DomTypeHolder::DomTypeHolder> as for<'a, 'b> unsafe fn(script_bindings::script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::webxr::xrwebglsubimage::XRWebGLSubImage>, script_bindings::script_runtime::CanGc) -> script_bindings::root::Root<script_bindings::root::Dom<dom::webxr::xrwebglsubimage::XRWebGLSubImage>>}

Function pointer to the general wrap function type
Source§

impl DomTypes for DomTypeHolder

Source§

type ANGLEInstancedArrays = ANGLEInstancedArrays

Source§

type AbortController = AbortController

Source§

type AbortSignal = AbortSignal

Source§

type AbstractRange = AbstractRange

Source§

type AnalyserNode = AnalyserNode

Source§

type AnimationEvent = AnimationEvent

Source§

type Attr = Attr

Source§

type AudioBuffer = AudioBuffer

Source§

type AudioBufferSourceNode = AudioBufferSourceNode

Source§

type AudioContext = AudioContext

Source§

type AudioDestinationNode = AudioDestinationNode

Source§

type AudioListener = AudioListener

Source§

type AudioNode = AudioNode

Source§

type AudioParam = AudioParam

Source§

type AudioScheduledSourceNode = AudioScheduledSourceNode

Source§

type AudioTrack = AudioTrack

Source§

type AudioTrackList = AudioTrackList

Source§

type BaseAudioContext = BaseAudioContext

Source§

type BeforeUnloadEvent = BeforeUnloadEvent

Source§

type BiquadFilterNode = BiquadFilterNode

Source§

type Blob = Blob

Source§

type Bluetooth = Bluetooth

Source§

type BluetoothAdvertisingEvent = BluetoothAdvertisingEvent

Source§

type BluetoothCharacteristicProperties = BluetoothCharacteristicProperties

Source§

type BluetoothDevice = BluetoothDevice

Source§

type BluetoothPermissionResult = BluetoothPermissionResult

Source§

type BluetoothRemoteGATTCharacteristic = BluetoothRemoteGATTCharacteristic

Source§

type BluetoothRemoteGATTDescriptor = BluetoothRemoteGATTDescriptor

Source§

type BluetoothRemoteGATTServer = BluetoothRemoteGATTServer

Source§

type BluetoothRemoteGATTService = BluetoothRemoteGATTService

Source§

type BluetoothUUID = BluetoothUUID

Source§

type BroadcastChannel = BroadcastChannel

Source§

type ByteLengthQueuingStrategy = ByteLengthQueuingStrategy

Source§

type ByteTeeReadIntoRequest = ByteTeeReadIntoRequest

Source§

type ByteTeeReadRequest = ByteTeeReadRequest

Source§

type ByteTeeUnderlyingSource = ByteTeeUnderlyingSource

Source§

type CDATASection = CDATASection

Source§

type CSS = CSS

Source§

type CSSConditionRule = CSSConditionRule

Source§

type CSSFontFaceRule = CSSFontFaceRule

Source§

type CSSGroupingRule = CSSGroupingRule

Source§

type CSSImportRule = CSSImportRule

Source§

type CSSKeyframeRule = CSSKeyframeRule

Source§

type CSSKeyframesRule = CSSKeyframesRule

Source§

type CSSLayerBlockRule = CSSLayerBlockRule

Source§

type CSSLayerStatementRule = CSSLayerStatementRule

Source§

type CSSMediaRule = CSSMediaRule

Source§

type CSSNamespaceRule = CSSNamespaceRule

Source§

type CSSNestedDeclarations = CSSNestedDeclarations

Source§

type CSSRule = CSSRule

Source§

type CSSRuleList = CSSRuleList

Source§

type CSSStyleDeclaration = CSSStyleDeclaration

Source§

type CSSStyleRule = CSSStyleRule

Source§

type CSSStyleSheet = CSSStyleSheet

Source§

type CSSStyleValue = CSSStyleValue

Source§

type CSSSupportsRule = CSSSupportsRule

Source§

type CanvasGradient = CanvasGradient

Source§

type CanvasPattern = CanvasPattern

Source§

type CanvasRenderingContext2D = CanvasRenderingContext2D

Source§

type ChannelMergerNode = ChannelMergerNode

Source§

type ChannelSplitterNode = ChannelSplitterNode

Source§

type CharacterData = CharacterData

Source§

type Client = Client

Source§

type Clipboard = Clipboard

Source§

type ClipboardEvent = ClipboardEvent

Source§

type ClipboardItem = ClipboardItem

Source§

type CloseEvent = CloseEvent

Source§

type CommandEvent = CommandEvent

Source§

type Comment = Comment

Source§

type CompositionEvent = CompositionEvent

Source§

type CompressionStream = CompressionStream

Source§

type ConstantSourceNode = ConstantSourceNode

Source§

type CookieStore = CookieStore

Source§

type CountQueuingStrategy = CountQueuingStrategy

Source§

type Credential = Credential

Source§

type CredentialsContainer = CredentialsContainer

Source§

type Crypto = Crypto

Source§

type CryptoKey = CryptoKey

Source§

type CustomElementRegistry = CustomElementRegistry

Source§

type CustomEvent = CustomEvent

Source§

type CustomStateSet = CustomStateSet

Source§

type DOMException = DOMException

Source§

type DOMImplementation = DOMImplementation

Source§

type DOMMatrix = DOMMatrix

Source§

type DOMMatrixReadOnly = DOMMatrixReadOnly

Source§

type DOMParser = DOMParser

Source§

type DOMPoint = DOMPoint

Source§

type DOMPointReadOnly = DOMPointReadOnly

Source§

type DOMQuad = DOMQuad

Source§

type DOMRect = DOMRect

Source§

type DOMRectList = DOMRectList

Source§

type DOMRectReadOnly = DOMRectReadOnly

Source§

type DOMStringList = DOMStringList

Source§

type DOMStringMap = DOMStringMap

Source§

type DOMTokenList = DOMTokenList

Source§

type DataTransfer = DataTransfer

Source§

type DataTransferItem = DataTransferItem

Source§

type DataTransferItemList = DataTransferItemList

Source§

type DebuggerAddDebuggeeEvent = DebuggerAddDebuggeeEvent

Source§

type DebuggerGetPossibleBreakpointsEvent = DebuggerGetPossibleBreakpointsEvent

Source§

type DebuggerGlobalScope = DebuggerGlobalScope

Source§

type DebuggerPauseEvent = DebuggerPauseEvent

Source§

type DebuggerSetBreakpointEvent = DebuggerSetBreakpointEvent

Source§

type DecompressionStream = DecompressionStream

Source§

type DedicatedWorkerGlobalScope = DedicatedWorkerGlobalScope

Source§

type DefaultTeeReadRequest = DefaultTeeReadRequest

Source§

type DefaultTeeUnderlyingSource = DefaultTeeUnderlyingSource

Source§

type DissimilarOriginLocation = DissimilarOriginLocation

Source§

type DissimilarOriginWindow = DissimilarOriginWindow

Source§

type Document = Document

Source§

type DocumentFragment = DocumentFragment

Source§

type DocumentType = DocumentType

Source§

type DynamicModuleOwner = DynamicModuleOwner

Source§

type EXTBlendMinmax = EXTBlendMinmax

Source§

type EXTColorBufferHalfFloat = EXTColorBufferHalfFloat

Source§

type EXTFragDepth = EXTFragDepth

Source§

type EXTShaderTextureLod = EXTShaderTextureLod

Source§

type EXTTextureFilterAnisotropic = EXTTextureFilterAnisotropic

Source§

type Element = Element

Source§

type ElementInternals = ElementInternals

Source§

type ErrorEvent = ErrorEvent

Source§

type Event = Event

Source§

type EventSource = EventSource

Source§

type EventTarget = EventTarget

Source§

type ExtendableEvent = ExtendableEvent

Source§

type ExtendableMessageEvent = ExtendableMessageEvent

Source§

type FakeXRDevice = FakeXRDevice

Source§

type FakeXRInputController = FakeXRInputController

Source§

type FetchLaterResult = FetchLaterResult

Source§

type File = File

Source§

type FileList = FileList

Source§

type FileReader = FileReader

Source§

type FileReaderSync = FileReaderSync

Source§

type FocusEvent = FocusEvent

Source§

type FontFace = FontFace

Source§

type FontFaceSet = FontFaceSet

Source§

type FormData = FormData

Source§

type FormDataEvent = FormDataEvent

Source§

type GPU = GPU

Source§

type GPUAdapter = GPUAdapter

Source§

type GPUAdapterInfo = GPUAdapterInfo

Source§

type GPUBindGroup = GPUBindGroup

Source§

type GPUBindGroupLayout = GPUBindGroupLayout

Source§

type GPUBuffer = GPUBuffer

Source§

type GPUBufferUsage = GPUBufferUsage

Source§

type GPUCanvasContext = GPUCanvasContext

Source§

type GPUColorWrite = GPUColorWrite

Source§

type GPUCommandBuffer = GPUCommandBuffer

Source§

type GPUCommandEncoder = GPUCommandEncoder

Source§

type GPUCompilationInfo = GPUCompilationInfo

Source§

type GPUCompilationMessage = GPUCompilationMessage

Source§

type GPUComputePassEncoder = GPUComputePassEncoder

Source§

type GPUComputePipeline = GPUComputePipeline

Source§

type GPUDevice = GPUDevice

Source§

type GPUDeviceLostInfo = GPUDeviceLostInfo

Source§

type GPUError = GPUError

Source§

type GPUInternalError = GPUInternalError

Source§

type GPUMapMode = GPUMapMode

Source§

type GPUOutOfMemoryError = GPUOutOfMemoryError

Source§

type GPUPipelineError = GPUPipelineError

Source§

type GPUPipelineLayout = GPUPipelineLayout

Source§

type GPUQuerySet = GPUQuerySet

Source§

type GPUQueue = GPUQueue

Source§

type GPURenderBundle = GPURenderBundle

Source§

type GPURenderBundleEncoder = GPURenderBundleEncoder

Source§

type GPURenderPassEncoder = GPURenderPassEncoder

Source§

type GPURenderPipeline = GPURenderPipeline

Source§

type GPUSampler = GPUSampler

Source§

type GPUShaderModule = GPUShaderModule

Source§

type GPUShaderStage = GPUShaderStage

Source§

type GPUSupportedFeatures = GPUSupportedFeatures

Source§

type GPUSupportedLimits = GPUSupportedLimits

Source§

type GPUTexture = GPUTexture

Source§

type GPUTextureUsage = GPUTextureUsage

Source§

type GPUTextureView = GPUTextureView

Source§

type GPUUncapturedErrorEvent = GPUUncapturedErrorEvent

Source§

type GPUValidationError = GPUValidationError

Source§

type GainNode = GainNode

Source§

type Gamepad = Gamepad

Source§

type GamepadButton = GamepadButton

Source§

type GamepadButtonList = GamepadButtonList

Source§

type GamepadEvent = GamepadEvent

Source§

type GamepadHapticActuator = GamepadHapticActuator

Source§

type GamepadPose = GamepadPose

Source§

type Geolocation = Geolocation

Source§

type GeolocationCoordinates = GeolocationCoordinates

Source§

type GeolocationPosition = GeolocationPosition

Source§

type GeolocationPositionError = GeolocationPositionError

Source§

type GlobalScope = GlobalScope

Source§

type HTMLAnchorElement = HTMLAnchorElement

Source§

type HTMLAreaElement = HTMLAreaElement

Source§

type HTMLAudioElement = HTMLAudioElement

Source§

type HTMLBRElement = HTMLBRElement

Source§

type HTMLBaseElement = HTMLBaseElement

Source§

type HTMLBodyElement = HTMLBodyElement

Source§

type HTMLButtonElement = HTMLButtonElement

Source§

type HTMLCanvasElement = HTMLCanvasElement

Source§

type HTMLCollection = HTMLCollection

Source§

type HTMLDListElement = HTMLDListElement

Source§

type HTMLDataElement = HTMLDataElement

Source§

type HTMLDataListElement = HTMLDataListElement

Source§

type HTMLDetailsElement = HTMLDetailsElement

Source§

type HTMLDialogElement = HTMLDialogElement

Source§

type HTMLDirectoryElement = HTMLDirectoryElement

Source§

type HTMLDivElement = HTMLDivElement

Source§

type HTMLDocument = HTMLDocument

Source§

type HTMLElement = HTMLElement

Source§

type HTMLEmbedElement = HTMLEmbedElement

Source§

type HTMLFieldSetElement = HTMLFieldSetElement

Source§

type HTMLFontElement = HTMLFontElement

Source§

type HTMLFormControlsCollection = HTMLFormControlsCollection

Source§

type HTMLFormElement = HTMLFormElement

Source§

type HTMLFrameElement = HTMLFrameElement

Source§

type HTMLFrameSetElement = HTMLFrameSetElement

Source§

type HTMLHRElement = HTMLHRElement

Source§

type HTMLHeadElement = HTMLHeadElement

Source§

type HTMLHeadingElement = HTMLHeadingElement

Source§

type HTMLHtmlElement = HTMLHtmlElement

Source§

type HTMLIFrameElement = HTMLIFrameElement

Source§

type HTMLImageElement = HTMLImageElement

Source§

type HTMLInputElement = HTMLInputElement

Source§

type HTMLLIElement = HTMLLIElement

Source§

type HTMLLabelElement = HTMLLabelElement

Source§

type HTMLLegendElement = HTMLLegendElement

Source§

type HTMLLinkElement = HTMLLinkElement

Source§

type HTMLMapElement = HTMLMapElement

Source§

type HTMLMediaElement = HTMLMediaElement

Source§

type HTMLMenuElement = HTMLMenuElement

Source§

type HTMLMetaElement = HTMLMetaElement

Source§

type HTMLMeterElement = HTMLMeterElement

Source§

type HTMLModElement = HTMLModElement

Source§

type HTMLOListElement = HTMLOListElement

Source§

type HTMLObjectElement = HTMLObjectElement

Source§

type HTMLOptGroupElement = HTMLOptGroupElement

Source§

type HTMLOptionElement = HTMLOptionElement

Source§

type HTMLOptionsCollection = HTMLOptionsCollection

Source§

type HTMLOutputElement = HTMLOutputElement

Source§

type HTMLParagraphElement = HTMLParagraphElement

Source§

type HTMLParamElement = HTMLParamElement

Source§

type HTMLPictureElement = HTMLPictureElement

Source§

type HTMLPreElement = HTMLPreElement

Source§

type HTMLProgressElement = HTMLProgressElement

Source§

type HTMLQuoteElement = HTMLQuoteElement

Source§

type HTMLScriptElement = HTMLScriptElement

Source§

type HTMLSelectElement = HTMLSelectElement

Source§

type HTMLSlotElement = HTMLSlotElement

Source§

type HTMLSourceElement = HTMLSourceElement

Source§

type HTMLSpanElement = HTMLSpanElement

Source§

type HTMLStyleElement = HTMLStyleElement

Source§

type HTMLTableCaptionElement = HTMLTableCaptionElement

Source§

type HTMLTableCellElement = HTMLTableCellElement

Source§

type HTMLTableColElement = HTMLTableColElement

Source§

type HTMLTableElement = HTMLTableElement

Source§

type HTMLTableRowElement = HTMLTableRowElement

Source§

type HTMLTableSectionElement = HTMLTableSectionElement

Source§

type HTMLTemplateElement = HTMLTemplateElement

Source§

type HTMLTextAreaElement = HTMLTextAreaElement

Source§

type HTMLTimeElement = HTMLTimeElement

Source§

type HTMLTitleElement = HTMLTitleElement

Source§

type HTMLTrackElement = HTMLTrackElement

Source§

type HTMLUListElement = HTMLUListElement

Source§

type HTMLUnknownElement = HTMLUnknownElement

Source§

type HTMLVideoElement = HTMLVideoElement

Source§

type HashChangeEvent = HashChangeEvent

Source§

type Headers = Headers

Source§

type History = History

Source§

type IDBCursor = IDBCursor

Source§

type IDBCursorWithValue = IDBCursorWithValue

Source§

type IDBDatabase = IDBDatabase

Source§

type IDBFactory = IDBFactory

Source§

type IDBIndex = IDBIndex

Source§

type IDBKeyRange = IDBKeyRange

Source§

type IDBObjectStore = IDBObjectStore

Source§

type IDBOpenDBRequest = IDBOpenDBRequest

Source§

type IDBRequest = IDBRequest

Source§

type IDBTransaction = IDBTransaction

Source§

type IDBVersionChangeEvent = IDBVersionChangeEvent

Source§

type IIRFilterNode = IIRFilterNode

Source§

type ImageBitmap = ImageBitmap

Source§

type ImageBitmapRenderingContext = ImageBitmapRenderingContext

Source§

type ImageData = ImageData

Source§

type InputEvent = InputEvent

Source§

type IntersectionObserver = IntersectionObserver

Source§

type IntersectionObserverEntry = IntersectionObserverEntry

Source§

type KeyboardEvent = KeyboardEvent

Source§

type LargestContentfulPaint = LargestContentfulPaint

Source§

type Location = Location

Source§

type MediaDeviceInfo = MediaDeviceInfo

Source§

type MediaDevices = MediaDevices

Source§

type MediaElementAudioSourceNode = MediaElementAudioSourceNode

Source§

type MediaError = MediaError

Source§

type MediaList = MediaList

Source§

type MediaMetadata = MediaMetadata

Source§

type MediaQueryList = MediaQueryList

Source§

type MediaQueryListEvent = MediaQueryListEvent

Source§

type MediaSession = MediaSession

Source§

type MediaStream = MediaStream

Source§

type MediaStreamAudioDestinationNode = MediaStreamAudioDestinationNode

Source§

type MediaStreamAudioSourceNode = MediaStreamAudioSourceNode

Source§

type MediaStreamTrack = MediaStreamTrack

Source§

type MediaStreamTrackAudioSourceNode = MediaStreamTrackAudioSourceNode

Source§

type MessageChannel = MessageChannel

Source§

type MessageEvent = MessageEvent

Source§

type MessagePort = MessagePort

Source§

type MimeType = MimeType

Source§

type MimeTypeArray = MimeTypeArray

Source§

type MouseEvent = MouseEvent

Source§

type MutationObserver = MutationObserver

Source§

type MutationRecord = MutationRecord

Source§

type NamedNodeMap = NamedNodeMap

Source§

type NavigationPreloadManager = NavigationPreloadManager

Source§

type Navigator = Navigator

Source§

type Node = Node

Source§

type NodeIterator = NodeIterator

Source§

type NodeList = NodeList

Source§

type Notification = Notification

Source§

type OESElementIndexUint = OESElementIndexUint

Source§

type OESStandardDerivatives = OESStandardDerivatives

Source§

type OESTextureFloat = OESTextureFloat

Source§

type OESTextureFloatLinear = OESTextureFloatLinear

Source§

type OESTextureHalfFloat = OESTextureHalfFloat

Source§

type OESTextureHalfFloatLinear = OESTextureHalfFloatLinear

Source§

type OESVertexArrayObject = OESVertexArrayObject

Source§

type OfflineAudioCompletionEvent = OfflineAudioCompletionEvent

Source§

type OfflineAudioContext = OfflineAudioContext

Source§

type OffscreenCanvas = OffscreenCanvas

Source§

type OffscreenCanvasRenderingContext2D = OffscreenCanvasRenderingContext2D

Source§

type Origin = Origin

Source§

type OscillatorNode = OscillatorNode

Source§

type PageTransitionEvent = PageTransitionEvent

Source§

type PaintRenderingContext2D = PaintRenderingContext2D

Source§

type PaintSize = PaintSize

Source§

type PaintWorkletGlobalScope = PaintWorkletGlobalScope

Source§

type PannerNode = PannerNode

Source§

type PasswordCredential = PasswordCredential

Source§

type Path2D = Path2D

Source§

type Performance = Performance

Source§

type PerformanceEntry = PerformanceEntry

Source§

type PerformanceMark = PerformanceMark

Source§

type PerformanceMeasure = PerformanceMeasure

Source§

type PerformanceNavigation = PerformanceNavigation

Source§

type PerformanceNavigationTiming = PerformanceNavigationTiming

Source§

type PerformanceObserver = PerformanceObserver

Source§

type PerformanceObserverEntryList = PerformanceObserverEntryList

Source§

type PerformancePaintTiming = PerformancePaintTiming

Source§

type PerformanceResourceTiming = PerformanceResourceTiming

Source§

type PermissionStatus = PermissionStatus

Source§

type Permissions = Permissions

Source§

type PipelineId = PipelineId

Source§

type Plugin = Plugin

Source§

type PluginArray = PluginArray

Source§

type PointerEvent = PointerEvent

Source§

type PopStateEvent = PopStateEvent

Source§

type ProcessingInstruction = ProcessingInstruction

Source§

type ProgressEvent = ProgressEvent

Source§

type Promise = Promise

Source§

type PromiseNativeHandler = PromiseNativeHandler

Source§

type PromiseRejectionEvent = PromiseRejectionEvent

Source§

type QuotaExceededError = QuotaExceededError

Source§

type RTCDataChannel = RTCDataChannel

Source§

type RTCDataChannelEvent = RTCDataChannelEvent

Source§

type RTCError = RTCError

Source§

type RTCErrorEvent = RTCErrorEvent

Source§

type RTCIceCandidate = RTCIceCandidate

Source§

type RTCPeerConnection = RTCPeerConnection

Source§

type RTCPeerConnectionIceEvent = RTCPeerConnectionIceEvent

Source§

type RTCRtpSender = RTCRtpSender

Source§

type RTCRtpTransceiver = RTCRtpTransceiver

Source§

type RTCSessionDescription = RTCSessionDescription

Source§

type RTCTrackEvent = RTCTrackEvent

Source§

type RadioNodeList = RadioNodeList

Source§

type Range = Range

Source§

type ReadableByteStreamController = ReadableByteStreamController

Source§

type ReadableStream = ReadableStream

Source§

type ReadableStreamBYOBReader = ReadableStreamBYOBReader

Source§

type ReadableStreamBYOBRequest = ReadableStreamBYOBRequest

Source§

type ReadableStreamDefaultController = ReadableStreamDefaultController

Source§

type ReadableStreamDefaultReader = ReadableStreamDefaultReader

Source§

type ReportingObserver = ReportingObserver

Source§

type Request = Request

Source§

type ResizeObserver = ResizeObserver

Source§

type ResizeObserverEntry = ResizeObserverEntry

Source§

type ResizeObserverSize = ResizeObserverSize

Source§

type Response = Response

Source§

type SVGElement = SVGElement

Source§

type SVGGraphicsElement = SVGGraphicsElement

Source§

type SVGImageElement = SVGImageElement

Source§

type SVGSVGElement = SVGSVGElement

Source§

type Screen = Screen

Source§

type SecurityPolicyViolationEvent = SecurityPolicyViolationEvent

Source§

type Selection = Selection

Source§

type ServiceWorker = ServiceWorker

Source§

type ServiceWorkerContainer = ServiceWorkerContainer

Source§

type ServiceWorkerGlobalScope = ServiceWorkerGlobalScope

Source§

type ServiceWorkerRegistration = ServiceWorkerRegistration

Source§

type ServoInternals = ServoInternals

Source§

type ServoParser = ServoParser

Source§

type ShadowRoot = ShadowRoot

Source§

type StaticRange = StaticRange

Source§

type StereoPannerNode = StereoPannerNode

Source§

type Storage = Storage

Source§

type StorageEvent = StorageEvent

Source§

type StylePropertyMapReadOnly = StylePropertyMapReadOnly

Source§

type StyleSheet = StyleSheet

Source§

type StyleSheetList = StyleSheetList

Source§

type SubmitEvent = SubmitEvent

Source§

type SubtleCrypto = SubtleCrypto

Source§

type TestBinding = TestBinding

Source§

type TestBindingIterable = TestBindingIterable

Source§

type TestBindingMaplikeWithInterface = TestBindingMaplikeWithInterface

Source§

type TestBindingMaplikeWithPrimitive = TestBindingMaplikeWithPrimitive

Source§

type TestBindingPairIterable = TestBindingPairIterable

Source§

type TestBindingProxy = TestBindingProxy

Source§

type TestBindingSetlikeWithInterface = TestBindingSetlikeWithInterface

Source§

type TestBindingSetlikeWithPrimitive = TestBindingSetlikeWithPrimitive

Source§

type TestNS = TestNS

Source§

type TestRunner = TestRunner

Source§

type TestUtils = TestUtils

Source§

type TestWorklet = TestWorklet

Source§

type TestWorkletGlobalScope = TestWorkletGlobalScope

Source§

type Text = Text

Source§

type TextDecoder = TextDecoder

Source§

type TextDecoderStream = TextDecoderStream

Source§

type TextEncoder = TextEncoder

Source§

type TextEncoderStream = TextEncoderStream

Source§

type TextMetrics = TextMetrics

Source§

type TextTrack = TextTrack

Source§

type TextTrackCue = TextTrackCue

Source§

type TextTrackCueList = TextTrackCueList

Source§

type TextTrackList = TextTrackList

Source§

type TimeRanges = TimeRanges

Source§

type ToggleEvent = ToggleEvent

Source§

type Touch = Touch

Source§

type TouchEvent = TouchEvent

Source§

type TouchList = TouchList

Source§

type TrackEvent = TrackEvent

Source§

type TransformStream = TransformStream

Source§

type TransformStreamDefaultController = TransformStreamDefaultController

Source§

type TransitionEvent = TransitionEvent

Source§

type TreeWalker = TreeWalker

Source§

type TrustedHTML = TrustedHTML

Source§

type TrustedScript = TrustedScript

Source§

type TrustedScriptURL = TrustedScriptURL

Source§

type TrustedTypePolicy = TrustedTypePolicy

Source§

type TrustedTypePolicyFactory = TrustedTypePolicyFactory

Source§

type UIEvent = UIEvent

Source§

type URL = URL

Source§

type URLPattern = URLPattern

Source§

type URLSearchParams = URLSearchParams

Source§

type UnderlyingSourceContainer = UnderlyingSourceContainer

Source§

type VTTCue = VTTCue

Source§

type VTTRegion = VTTRegion

Source§

type ValidityState = ValidityState

Source§

type VideoTrack = VideoTrack

Source§

type VideoTrackList = VideoTrackList

Source§

type VisibilityStateEntry = VisibilityStateEntry

Source§

type VisualViewport = VisualViewport

Source§

type WEBGLColorBufferFloat = WEBGLColorBufferFloat

Source§

type WEBGLCompressedTextureETC1 = WEBGLCompressedTextureETC1

Source§

type WEBGLCompressedTextureS3TC = WEBGLCompressedTextureS3TC

Source§

type WGSLLanguageFeatures = WGSLLanguageFeatures

Source§

type WebGL2RenderingContext = WebGL2RenderingContext

Source§

type WebGLActiveInfo = WebGLActiveInfo

Source§

type WebGLBuffer = WebGLBuffer

Source§

type WebGLContextEvent = WebGLContextEvent

Source§

type WebGLFramebuffer = WebGLFramebuffer

Source§

type WebGLObject = WebGLObject

Source§

type WebGLProgram = WebGLProgram

Source§

type WebGLQuery = WebGLQuery

Source§

type WebGLRenderbuffer = WebGLRenderbuffer

Source§

type WebGLRenderingContext = WebGLRenderingContext

Source§

type WebGLSampler = WebGLSampler

Source§

type WebGLShader = WebGLShader

Source§

type WebGLShaderPrecisionFormat = WebGLShaderPrecisionFormat

Source§

type WebGLSync = WebGLSync

Source§

type WebGLTexture = WebGLTexture

Source§

type WebGLTransformFeedback = WebGLTransformFeedback

Source§

type WebGLUniformLocation = WebGLUniformLocation

Source§

type WebGLVertexArrayObject = WebGLVertexArrayObject

Source§

type WebGLVertexArrayObjectOES = WebGLVertexArrayObjectOES

Source§

type WebSocket = WebSocket

Source§

type WheelEvent = WheelEvent

Source§

type Window = Window

Source§

type WindowProxy = WindowProxy

Source§

type Worker = Worker

Source§

type WorkerGlobalScope = WorkerGlobalScope

Source§

type WorkerLocation = WorkerLocation

Source§

type WorkerNavigator = WorkerNavigator

Source§

type Worklet = Worklet

Source§

type WorkletGlobalScope = WorkletGlobalScope

Source§

type WritableStream = WritableStream

Source§

type WritableStreamDefaultController = WritableStreamDefaultController

Source§

type WritableStreamDefaultWriter = WritableStreamDefaultWriter

Source§

type XMLDocument = XMLDocument

Source§

type XMLHttpRequest = XMLHttpRequest

Source§

type XMLHttpRequestEventTarget = XMLHttpRequestEventTarget

Source§

type XMLHttpRequestUpload = XMLHttpRequestUpload

Source§

type XMLSerializer = XMLSerializer

Source§

type XPathEvaluator = XPathEvaluator

Source§

type XPathExpression = XPathExpression

Source§

type XPathResult = XPathResult

Source§

type XRBoundedReferenceSpace = XRBoundedReferenceSpace

Source§

type XRCompositionLayer = XRCompositionLayer

Source§

type XRCubeLayer = XRCubeLayer

Source§

type XRCylinderLayer = XRCylinderLayer

Source§

type XREquirectLayer = XREquirectLayer

Source§

type XRFrame = XRFrame

Source§

type XRHand = XRHand

Source§

type XRHitTestResult = XRHitTestResult

Source§

type XRHitTestSource = XRHitTestSource

Source§

type XRInputSource = XRInputSource

Source§

type XRInputSourceArray = XRInputSourceArray

Source§

type XRInputSourceEvent = XRInputSourceEvent

Source§

type XRInputSourcesChangeEvent = XRInputSourcesChangeEvent

Source§

type XRJointPose = XRJointPose

Source§

type XRJointSpace = XRJointSpace

Source§

type XRLayer = XRLayer

Source§

type XRLayerEvent = XRLayerEvent

Source§

type XRMediaBinding = XRMediaBinding

Source§

type XRPose = XRPose

Source§

type XRProjectionLayer = XRProjectionLayer

Source§

type XRQuadLayer = XRQuadLayer

Source§

type XRRay = XRRay

Source§

type XRReferenceSpace = XRReferenceSpace

Source§

type XRReferenceSpaceEvent = XRReferenceSpaceEvent

Source§

type XRRenderState = XRRenderState

Source§

type XRRigidTransform = XRRigidTransform

Source§

type XRSession = XRSession

Source§

type XRSessionEvent = XRSessionEvent

Source§

type XRSpace = XRSpace

Source§

type XRSubImage = XRSubImage

Source§

type XRSystem = XRSystem

Source§

type XRTest = XRTest

Source§

type XRView = XRView

Source§

type XRViewerPose = XRViewerPose

Source§

type XRViewport = XRViewport

Source§

type XRWebGLBinding = XRWebGLBinding

Source§

type XRWebGLLayer = XRWebGLLayer

Source§

type XRWebGLSubImage = XRWebGLSubImage

Source§

type Console = Console

Source§

impl DynamicModuleOwnerMethods<DomTypeHolder> for DynamicModuleOwner

Source§

impl ElementInternalsMethods<DomTypeHolder> for ElementInternals

Source§

fn GetShadowRoot(&self) -> Option<DomRoot<ShadowRoot>>

Source§

fn SetFormValue( &self, value: Option<FileOrUSVStringOrFormData<DomTypeHolder>>, maybe_state: Option<Option<FileOrUSVStringOrFormData<DomTypeHolder>>>, ) -> ErrorResult

Source§

fn SetValidity( &self, flags: &ValidityStateFlags, message: Option<DOMString>, anchor: Option<&HTMLElement>, can_gc: CanGc, ) -> ErrorResult

Source§

fn GetValidationMessage(&self) -> Fallible<DOMString>

Source§

fn GetValidity(&self, can_gc: CanGc) -> Fallible<DomRoot<ValidityState>>

Source§

fn GetLabels(&self, can_gc: CanGc) -> Fallible<DomRoot<NodeList>>

Source§

fn GetWillValidate(&self) -> Fallible<bool>

Source§

fn GetForm(&self) -> Fallible<Option<DomRoot<HTMLFormElement>>>

Source§

fn CheckValidity(&self, can_gc: CanGc) -> Fallible<bool>

Source§

fn ReportValidity(&self, can_gc: CanGc) -> Fallible<bool>

Source§

fn States(&self, can_gc: CanGc) -> DomRoot<CustomStateSet>

Source§

impl ElementMethods<DomTypeHolder> for Element

Source§

fn GetNamespaceURI(&self) -> Option<DOMString>

Source§

fn LocalName(&self) -> DOMString

Source§

fn GetPrefix(&self) -> Option<DOMString>

Source§

fn TagName(&self) -> DOMString

Source§

fn SetId(&self, id: DOMString, can_gc: CanGc)

Source§

fn ClassName(&self) -> DOMString

Source§

fn SetClassName(&self, class: DOMString, can_gc: CanGc)

Source§

fn ClassList(&self, can_gc: CanGc) -> DomRoot<DOMTokenList>

Source§

fn Attributes(&self, can_gc: CanGc) -> DomRoot<NamedNodeMap>

Source§

fn HasAttributes(&self) -> bool

Source§

fn GetAttributeNames(&self) -> Vec<DOMString>

Source§

fn GetAttribute(&self, name: DOMString) -> Option<DOMString>

Source§

fn GetAttributeNS( &self, namespace: Option<DOMString>, local_name: DOMString, ) -> Option<DOMString>

Source§

fn GetAttributeNode(&self, name: DOMString) -> Option<DomRoot<Attr>>

Source§

fn GetAttributeNodeNS( &self, namespace: Option<DOMString>, local_name: DOMString, ) -> Option<DomRoot<Attr>>

Source§

fn ToggleAttribute( &self, name: DOMString, force: Option<bool>, can_gc: CanGc, ) -> Fallible<bool>

Source§

fn SetAttribute( &self, name: DOMString, value: TrustedHTMLOrTrustedScriptOrTrustedScriptURLOrString<DomTypeHolder>, can_gc: CanGc, ) -> ErrorResult

Source§

fn SetAttributeNS( &self, namespace: Option<DOMString>, qualified_name: DOMString, value: TrustedHTMLOrTrustedScriptOrTrustedScriptURLOrString<DomTypeHolder>, can_gc: CanGc, ) -> ErrorResult

Source§

fn SetAttributeNode( &self, attr: &Attr, can_gc: CanGc, ) -> Fallible<Option<DomRoot<Attr>>>

Source§

fn SetAttributeNodeNS( &self, attr: &Attr, can_gc: CanGc, ) -> Fallible<Option<DomRoot<Attr>>>

Source§

fn RemoveAttribute(&self, name: DOMString, can_gc: CanGc)

Source§

fn RemoveAttributeNS( &self, namespace: Option<DOMString>, local_name: DOMString, can_gc: CanGc, )

Source§

fn RemoveAttributeNode( &self, attr: &Attr, can_gc: CanGc, ) -> Fallible<DomRoot<Attr>>

Source§

fn HasAttribute(&self, name: DOMString) -> bool

Source§

fn HasAttributeNS( &self, namespace: Option<DOMString>, local_name: DOMString, ) -> bool

Source§

fn GetElementsByTagName( &self, localname: DOMString, can_gc: CanGc, ) -> DomRoot<HTMLCollection>

Source§

fn GetElementsByTagNameNS( &self, maybe_ns: Option<DOMString>, localname: DOMString, can_gc: CanGc, ) -> DomRoot<HTMLCollection>

Source§

fn GetElementsByClassName( &self, classes: DOMString, can_gc: CanGc, ) -> DomRoot<HTMLCollection>

Source§

fn GetClientRects(&self, can_gc: CanGc) -> DomRoot<DOMRectList>

Source§

fn GetBoundingClientRect(&self, can_gc: CanGc) -> DomRoot<DOMRect>

Source§

fn Scroll(&self, options: &ScrollToOptions)

Source§

fn Scroll_(&self, x: f64, y: f64)

Source§

fn ScrollTo(&self, options: &ScrollToOptions)

Source§

fn ScrollTo_(&self, x: f64, y: f64)

Source§

fn ScrollBy(&self, options: &ScrollToOptions)

Source§

fn ScrollBy_(&self, x: f64, y: f64)

Source§

fn ScrollTop(&self) -> f64

Source§

fn ScrollLeft(&self) -> f64

Source§

fn SetScrollLeft(&self, x: f64)

Source§

fn ScrollIntoView(&self, arg: BooleanOrScrollIntoViewOptions)

Source§

fn ScrollWidth(&self) -> i32

Source§

fn ScrollHeight(&self) -> i32

Source§

fn ClientTop(&self) -> i32

Source§

fn ClientLeft(&self) -> i32

Source§

fn ClientWidth(&self) -> i32

Source§

fn ClientHeight(&self) -> i32

Source§

fn SetHTMLUnsafe( &self, html: TrustedHTMLOrString<DomTypeHolder>, can_gc: CanGc, ) -> ErrorResult

Source§

fn GetHTML( &self, options: &GetHTMLOptions<DomTypeHolder>, can_gc: CanGc, ) -> DOMString

Source§

fn GetInnerHTML( &self, can_gc: CanGc, ) -> Fallible<TrustedHTMLOrNullIsEmptyString<DomTypeHolder>>

Source§

fn SetInnerHTML( &self, value: TrustedHTMLOrNullIsEmptyString<DomTypeHolder>, can_gc: CanGc, ) -> ErrorResult

Source§

fn GetOuterHTML( &self, can_gc: CanGc, ) -> Fallible<TrustedHTMLOrNullIsEmptyString<DomTypeHolder>>

Source§

fn SetOuterHTML( &self, value: TrustedHTMLOrNullIsEmptyString<DomTypeHolder>, can_gc: CanGc, ) -> ErrorResult

Source§

fn GetPreviousElementSibling(&self) -> Option<DomRoot<Element>>

Source§

fn GetNextElementSibling(&self) -> Option<DomRoot<Element>>

Source§

fn Children(&self, can_gc: CanGc) -> DomRoot<HTMLCollection>

Source§

fn GetFirstElementChild(&self) -> Option<DomRoot<Element>>

Source§

fn GetLastElementChild(&self) -> Option<DomRoot<Element>>

Source§

fn ChildElementCount(&self) -> u32

Source§

fn Prepend( &self, nodes: Vec<NodeOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn Append( &self, nodes: Vec<NodeOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn ReplaceChildren( &self, nodes: Vec<NodeOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn QuerySelector( &self, selectors: DOMString, ) -> Fallible<Option<DomRoot<Element>>>

Source§

fn QuerySelectorAll(&self, selectors: DOMString) -> Fallible<DomRoot<NodeList>>

Source§

fn Before( &self, nodes: Vec<NodeOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn After( &self, nodes: Vec<NodeOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn ReplaceWith( &self, nodes: Vec<NodeOrString<DomTypeHolder>>, can_gc: CanGc, ) -> ErrorResult

Source§

fn Remove(&self, can_gc: CanGc)

Source§

fn Matches(&self, selectors: DOMString) -> Fallible<bool>

Source§

fn WebkitMatchesSelector(&self, selectors: DOMString) -> Fallible<bool>

Source§

fn Closest(&self, selectors: DOMString) -> Fallible<Option<DomRoot<Element>>>

Source§

fn InsertAdjacentElement( &self, where_: DOMString, element: &Element, can_gc: CanGc, ) -> Fallible<Option<DomRoot<Element>>>

Source§

fn InsertAdjacentText( &self, where_: DOMString, data: DOMString, can_gc: CanGc, ) -> ErrorResult

Source§

fn InsertAdjacentHTML( &self, position: DOMString, text: TrustedHTMLOrString<DomTypeHolder>, can_gc: CanGc, ) -> ErrorResult

Source§

fn RequestFullscreen(&self, can_gc: CanGc) -> Rc<Promise>

Source§

fn AttachShadow( &self, init: &ShadowRootInit, can_gc: CanGc, ) -> Fallible<DomRoot<ShadowRoot>>

Source§

fn GetShadowRoot(&self) -> Option<DomRoot<ShadowRoot>>

Source§

fn GetCustomElementRegistry(&self) -> Option<DomRoot<CustomElementRegistry>>

Source§

fn GetAssignedSlot(&self) -> Option<DomRoot<HTMLSlotElement>>

Source§

fn Part(&self) -> DomRoot<DOMTokenList>

Source§

fn Id(&self) -> DOMString

Source§

fn Slot(&self) -> DOMString

Source§

fn SetSlot(&self, value: DOMString)

Source§

fn SetScrollTop(&self, y_: f64)

Source§

fn CurrentCSSZoom(&self) -> Finite<f64>

Source§

fn EnterFormalActivationState(&self) -> ErrorResult

Source§

fn ExitFormalActivationState(&self) -> ErrorResult

Source§

fn GetRole(&self) -> Option<DOMString>

Source§

fn SetRole(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaAtomic(&self) -> Option<DOMString>

Source§

fn SetAriaAtomic(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaAutoComplete(&self) -> Option<DOMString>

Source§

fn SetAriaAutoComplete(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaBrailleLabel(&self) -> Option<DOMString>

Source§

fn SetAriaBrailleLabel(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaBrailleRoleDescription(&self) -> Option<DOMString>

Source§

fn SetAriaBrailleRoleDescription(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaBusy(&self) -> Option<DOMString>

Source§

fn SetAriaBusy(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaChecked(&self) -> Option<DOMString>

Source§

fn SetAriaChecked(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaColCount(&self) -> Option<DOMString>

Source§

fn SetAriaColCount(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaColIndex(&self) -> Option<DOMString>

Source§

fn SetAriaColIndex(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaColIndexText(&self) -> Option<DOMString>

Source§

fn SetAriaColIndexText(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaColSpan(&self) -> Option<DOMString>

Source§

fn SetAriaColSpan(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaCurrent(&self) -> Option<DOMString>

Source§

fn SetAriaCurrent(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaDescription(&self) -> Option<DOMString>

Source§

fn SetAriaDescription(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaDisabled(&self) -> Option<DOMString>

Source§

fn SetAriaDisabled(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaExpanded(&self) -> Option<DOMString>

Source§

fn SetAriaExpanded(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaHasPopup(&self) -> Option<DOMString>

Source§

fn SetAriaHasPopup(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaHidden(&self) -> Option<DOMString>

Source§

fn SetAriaHidden(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaInvalid(&self) -> Option<DOMString>

Source§

fn SetAriaInvalid(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaKeyShortcuts(&self) -> Option<DOMString>

Source§

fn SetAriaKeyShortcuts(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaLabel(&self) -> Option<DOMString>

Source§

fn SetAriaLabel(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaLevel(&self) -> Option<DOMString>

Source§

fn SetAriaLevel(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaLive(&self) -> Option<DOMString>

Source§

fn SetAriaLive(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaModal(&self) -> Option<DOMString>

Source§

fn SetAriaModal(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaMultiLine(&self) -> Option<DOMString>

Source§

fn SetAriaMultiLine(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaMultiSelectable(&self) -> Option<DOMString>

Source§

fn SetAriaMultiSelectable(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaOrientation(&self) -> Option<DOMString>

Source§

fn SetAriaOrientation(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaPlaceholder(&self) -> Option<DOMString>

Source§

fn SetAriaPlaceholder(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaPosInSet(&self) -> Option<DOMString>

Source§

fn SetAriaPosInSet(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaPressed(&self) -> Option<DOMString>

Source§

fn SetAriaPressed(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaReadOnly(&self) -> Option<DOMString>

Source§

fn SetAriaReadOnly(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaRelevant(&self) -> Option<DOMString>

Source§

fn SetAriaRelevant(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaRequired(&self) -> Option<DOMString>

Source§

fn SetAriaRequired(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaRoleDescription(&self) -> Option<DOMString>

Source§

fn SetAriaRoleDescription(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaRowCount(&self) -> Option<DOMString>

Source§

fn SetAriaRowCount(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaRowIndex(&self) -> Option<DOMString>

Source§

fn SetAriaRowIndex(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaRowIndexText(&self) -> Option<DOMString>

Source§

fn SetAriaRowIndexText(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaRowSpan(&self) -> Option<DOMString>

Source§

fn SetAriaRowSpan(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaSelected(&self) -> Option<DOMString>

Source§

fn SetAriaSelected(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaSetSize(&self) -> Option<DOMString>

Source§

fn SetAriaSetSize(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaSort(&self) -> Option<DOMString>

Source§

fn SetAriaSort(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaValueMax(&self) -> Option<DOMString>

Source§

fn SetAriaValueMax(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaValueMin(&self) -> Option<DOMString>

Source§

fn SetAriaValueMin(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaValueNow(&self) -> Option<DOMString>

Source§

fn SetAriaValueNow(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

fn GetAriaValueText(&self) -> Option<DOMString>

Source§

fn SetAriaValueText(&self, value: Option<DOMString>, can_gc: CanGc)

Source§

impl ErrorEventMethods<DomTypeHolder> for ErrorEvent

Source§

impl EventMethods<DomTypeHolder> for Event

Source§

fn Constructor( global: &GlobalScope, proto: Option<HandleObject<'_>>, can_gc: CanGc, type_: DOMString, init: &EventInit, ) -> Fallible<DomRoot<Event>>

Source§

fn EventPhase(&self) -> u16

Source§

fn Type(&self) -> DOMString

Source§

fn GetTarget(&self) -> Option<DomRoot<EventTarget>>

Source§

fn GetSrcElement(&self) -> Option<DomRoot<EventTarget>>

Source§

fn GetCurrentTarget(&self) -> Option<DomRoot<EventTarget>>

Source§

fn ComposedPath(&self) -> Vec<DomRoot<EventTarget>>

Source§

fn DefaultPrevented(&self) -> bool

Source§

fn Composed(&self) -> bool

Source§

fn PreventDefault(&self)

Source§

fn StopPropagation(&self)

Source§

fn StopImmediatePropagation(&self)

Source§

fn Bubbles(&self) -> bool

Source§

fn Cancelable(&self) -> bool

Source§

fn ReturnValue(&self) -> bool

Source§

fn SetReturnValue(&self, val: bool)

Source§

fn CancelBubble(&self) -> bool

Source§

fn SetCancelBubble(&self, value: bool)

Source§

fn TimeStamp(&self) -> DOMHighResTimeStamp

Source§

fn InitEvent(&self, type_: DOMString, bubbles: bool, cancelable: bool)

Source§

fn IsTrusted(&self) -> bool

Source§

impl EventSourceMethods<DomTypeHolder> for EventSource

Source§

impl EventTargetMethods<DomTypeHolder> for EventTarget

Source§

impl ExtendableEventMethods<DomTypeHolder> for ExtendableEvent

Source§

impl ExtendableMessageEventMethods<DomTypeHolder> for ExtendableMessageEvent

Source§

impl FakeXRDeviceMethods<DomTypeHolder> for FakeXRDevice

Source§

fn SetViews( &self, views: Vec<FakeXRViewInit>, _secondary_views: Option<Vec<FakeXRViewInit>>, ) -> Fallible<()>

Source§

fn SetViewerOrigin( &self, origin: &FakeXRRigidTransformInit, _emulated_position: bool, ) -> Fallible<()>

Source§

fn ClearViewerOrigin(&self)

Source§

fn ClearFloorOrigin(&self)

Source§

fn SetFloorOrigin(&self, origin: &FakeXRRigidTransformInit) -> Fallible<()>

Source§

fn ClearWorld(&self)

Source§

fn SetWorld(&self, world: &FakeXRWorldInit) -> Fallible<()>

Source§

fn SimulateVisibilityChange(&self, v: XRVisibilityState)

Source§

fn SimulateInputSourceConnection( &self, init: &FakeXRInputSourceInit, ) -> Fallible<DomRoot<FakeXRInputController>>

Source§

fn Disconnect(&self, can_gc: CanGc) -> Rc<Promise>

Source§

fn SetBoundsGeometry( &self, bounds_coodinates: Vec<FakeXRBoundsPoint>, ) -> Fallible<()>

Source§

fn SimulateResetPose(&self)

Source§

impl FakeXRInputControllerMethods<DomTypeHolder> for FakeXRInputController

Source§

fn SetPointerOrigin( &self, origin: &FakeXRRigidTransformInit, _emulated: bool, ) -> Fallible<()>

Source§

fn SetGripOrigin( &self, origin: &FakeXRRigidTransformInit, _emulated: bool, ) -> Fallible<()>

Source§

fn ClearGripOrigin(&self)

Source§

fn Disconnect(&self)

Source§

fn Reconnect(&self)

Source§

fn StartSelection(&self)

Source§

fn EndSelection(&self)

Source§

fn SimulateSelect(&self)

Source§

fn SetHandedness(&self, handedness: XRHandedness)

Source§

fn SetTargetRayMode(&self, target_ray_mode: XRTargetRayMode)

Source§

fn SetProfiles(&self, profiles: Vec<DOMString>)

Source§

fn SetSupportedButtons(&self, supported_buttons: Vec<FakeXRButtonStateInit>)

Source§

fn UpdateButtonState( &self, button_state: &FakeXRButtonStateInit, ) -> Fallible<()>

Source§

impl FetchLaterResultMethods<DomTypeHolder> for FetchLaterResult

Source§

impl FileListMethods<DomTypeHolder> for FileList

Source§

impl FileMethods<DomTypeHolder> for File

Source§

impl FileReaderMethods<DomTypeHolder> for FileReader

Source§

fn Constructor( global: &GlobalScope, proto: Option<HandleObject<'_>>, can_gc: CanGc, ) -> Fallible<DomRoot<FileReader>>

Source§

fn Abort(&self, can_gc: CanGc)

Source§

fn GetError(&self) -> Option<DomRoot<DOMException>>

Source§

fn GetResult(&self, _: JSContext) -> Option<StringOrObject>

Source§

fn ReadyState(&self) -> u16

Source§

fn GetOnloadstart(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnloadstart( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnprogress(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnprogress( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnload(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnload(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnabort(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnabort(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnerror(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnerror(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnloadend(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnloadend(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn ReadAsArrayBuffer(&self, blob: &Blob, can_gc: CanGc) -> ErrorResult

Source§

fn ReadAsDataURL(&self, blob: &Blob, can_gc: CanGc) -> ErrorResult

Source§

fn ReadAsText( &self, blob: &Blob, label: Option<DOMString>, can_gc: CanGc, ) -> ErrorResult

Source§

impl FileReaderSyncMethods<DomTypeHolder> for FileReaderSync

Source§

impl FocusEventMethods<DomTypeHolder> for FocusEvent

Source§

impl FontFaceMethods<DomTypeHolder> for FontFace

Source§

fn Family(&self) -> DOMString

Source§

fn SetFamily(&self, family_name: DOMString) -> ErrorResult

Source§

fn Style(&self) -> DOMString

Source§

fn SetStyle(&self, value: DOMString) -> ErrorResult

Source§

fn Weight(&self) -> DOMString

Source§

fn SetWeight(&self, value: DOMString) -> ErrorResult

Source§

fn Stretch(&self) -> DOMString

Source§

fn SetStretch(&self, value: DOMString) -> ErrorResult

Source§

fn UnicodeRange(&self) -> DOMString

Source§

fn SetUnicodeRange(&self, value: DOMString) -> ErrorResult

Source§

fn FeatureSettings(&self) -> DOMString

Source§

fn SetFeatureSettings(&self, value: DOMString) -> ErrorResult

Source§

fn VariationSettings(&self) -> DOMString

Source§

fn SetVariationSettings(&self, value: DOMString) -> ErrorResult

Source§

fn Display(&self) -> DOMString

Source§

fn SetDisplay(&self, value: DOMString) -> ErrorResult

Source§

fn AscentOverride(&self) -> DOMString

Source§

fn SetAscentOverride(&self, value: DOMString) -> ErrorResult

Source§

fn DescentOverride(&self) -> DOMString

Source§

fn SetDescentOverride(&self, value: DOMString) -> ErrorResult

Source§

fn LineGapOverride(&self) -> DOMString

Source§

fn SetLineGapOverride(&self, value: DOMString) -> ErrorResult

Source§

fn Status(&self) -> FontFaceLoadStatus

Source§

fn Load(&self) -> Rc<Promise>

The load() method of FontFace forces a url-based font face to request its font data and load. For fonts constructed from a buffer source, or fonts that are already loading or loaded, it does nothing. https://drafts.csswg.org/css-font-loading/#font-face-load

Source§

fn Loaded(&self) -> Rc<Promise>

Source§

fn Constructor( window: &Window, proto: Option<HandleObject<'_>>, can_gc: CanGc, family: DOMString, source: StringOrArrayBufferViewOrArrayBuffer, descriptors: &FontFaceDescriptors, ) -> DomRoot<FontFace>

Source§

impl FontFaceSetMethods<DomTypeHolder> for FontFaceSet

Source§

impl FormDataEventMethods<DomTypeHolder> for FormDataEvent

Source§

impl FormDataMethods<DomTypeHolder> for FormData

Source§

impl GPUAdapterInfoMethods<DomTypeHolder> for GPUAdapterInfo

Source§

impl GPUAdapterMethods<DomTypeHolder> for GPUAdapter

Source§

impl GPUBindGroupLayoutMethods<DomTypeHolder> for GPUBindGroupLayout

Source§

impl GPUBindGroupMethods<DomTypeHolder> for GPUBindGroup

Source§

impl GPUBufferMethods<DomTypeHolder> for GPUBuffer

Source§

impl GPUCanvasContextMethods<DomTypeHolder> for GPUCanvasContext

Source§

impl GPUCommandBufferMethods<DomTypeHolder> for GPUCommandBuffer

Source§

impl GPUCommandEncoderMethods<DomTypeHolder> for GPUCommandEncoder

Source§

fn Label(&self) -> USVString

Source§

fn SetLabel(&self, value: USVString)

Source§

fn BeginComputePass( &self, descriptor: &GPUComputePassDescriptor, ) -> DomRoot<GPUComputePassEncoder>

Source§

fn BeginRenderPass( &self, descriptor: &GPURenderPassDescriptor<DomTypeHolder>, ) -> Fallible<DomRoot<GPURenderPassEncoder>>

Source§

fn CopyBufferToBuffer( &self, source: &GPUBuffer, source_offset: GPUSize64, destination: &GPUBuffer, destination_offset: GPUSize64, size: GPUSize64, )

Source§

fn CopyBufferToTexture( &self, source: &GPUImageCopyBuffer<DomTypeHolder>, destination: &GPUImageCopyTexture<DomTypeHolder>, copy_size: GPUExtent3D, ) -> Fallible<()>

Source§

fn CopyTextureToBuffer( &self, source: &GPUImageCopyTexture<DomTypeHolder>, destination: &GPUImageCopyBuffer<DomTypeHolder>, copy_size: GPUExtent3D, ) -> Fallible<()>

Source§

fn CopyTextureToTexture( &self, source: &GPUImageCopyTexture<DomTypeHolder>, destination: &GPUImageCopyTexture<DomTypeHolder>, copy_size: GPUExtent3D, ) -> Fallible<()>

Source§

fn Finish( &self, descriptor: &GPUCommandBufferDescriptor, ) -> DomRoot<GPUCommandBuffer>

Source§

impl GPUCompilationInfoMethods<DomTypeHolder> for GPUCompilationInfo

Source§

impl GPUCompilationMessageMethods<DomTypeHolder> for GPUCompilationMessage

Source§

impl GPUComputePassEncoderMethods<DomTypeHolder> for GPUComputePassEncoder

Source§

impl GPUComputePipelineMethods<DomTypeHolder> for GPUComputePipeline

Source§

impl GPUDeviceLostInfoMethods<DomTypeHolder> for GPUDeviceLostInfo

Source§

impl GPUDeviceMethods<DomTypeHolder> for GPUDevice

Source§

fn Features(&self) -> DomRoot<GPUSupportedFeatures>

Source§

fn Limits(&self) -> DomRoot<GPUSupportedLimits>

Source§

fn AdapterInfo(&self) -> DomRoot<GPUAdapterInfo>

Source§

fn GetQueue(&self) -> DomRoot<GPUQueue>

Source§

fn Label(&self) -> USVString

Source§

fn SetLabel(&self, value: USVString)

Source§

fn Lost(&self) -> Rc<Promise>

Source§

fn CreateBuffer( &self, descriptor: &GPUBufferDescriptor, ) -> Fallible<DomRoot<GPUBuffer>>

Source§

fn CreateBindGroupLayout( &self, descriptor: &GPUBindGroupLayoutDescriptor, ) -> Fallible<DomRoot<GPUBindGroupLayout>>

Source§

fn CreatePipelineLayout( &self, descriptor: &GPUPipelineLayoutDescriptor<DomTypeHolder>, ) -> DomRoot<GPUPipelineLayout>

Source§

fn CreateBindGroup( &self, descriptor: &GPUBindGroupDescriptor<DomTypeHolder>, ) -> DomRoot<GPUBindGroup>

Source§

fn CreateShaderModule( &self, descriptor: RootedTraceableBox<GPUShaderModuleDescriptor>, comp: InRealm<'_>, can_gc: CanGc, ) -> DomRoot<GPUShaderModule>

Source§

fn CreateComputePipeline( &self, descriptor: &GPUComputePipelineDescriptor<DomTypeHolder>, ) -> DomRoot<GPUComputePipeline>

Source§

fn CreateComputePipelineAsync( &self, descriptor: &GPUComputePipelineDescriptor<DomTypeHolder>, comp: InRealm<'_>, can_gc: CanGc, ) -> Rc<Promise>

Source§

fn CreateCommandEncoder( &self, descriptor: &GPUCommandEncoderDescriptor, ) -> DomRoot<GPUCommandEncoder>

Source§

fn CreateTexture( &self, descriptor: &GPUTextureDescriptor, ) -> Fallible<DomRoot<GPUTexture>>

Source§

fn CreateSampler( &self, descriptor: &GPUSamplerDescriptor, ) -> DomRoot<GPUSampler>

Source§

fn CreateRenderPipeline( &self, descriptor: &GPURenderPipelineDescriptor<DomTypeHolder>, ) -> Fallible<DomRoot<GPURenderPipeline>>

Source§

fn CreateRenderPipelineAsync( &self, descriptor: &GPURenderPipelineDescriptor<DomTypeHolder>, comp: InRealm<'_>, can_gc: CanGc, ) -> Fallible<Rc<Promise>>

Source§

fn CreateRenderBundleEncoder( &self, descriptor: &GPURenderBundleEncoderDescriptor, ) -> Fallible<DomRoot<GPURenderBundleEncoder>>

Source§

fn PushErrorScope(&self, filter: GPUErrorFilter)

Source§

fn PopErrorScope(&self, comp: InRealm<'_>, can_gc: CanGc) -> Rc<Promise>

Source§

fn Destroy(&self)

Source§

fn GetOnuncapturederror(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnuncapturederror( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

impl GPUErrorMethods<DomTypeHolder> for GPUError

Source§

impl GPUInternalErrorMethods<DomTypeHolder> for GPUInternalError

Source§

impl GPUMethods<DomTypeHolder> for GPU

Source§

impl GPUOutOfMemoryErrorMethods<DomTypeHolder> for GPUOutOfMemoryError

Source§

impl GPUPipelineErrorMethods<DomTypeHolder> for GPUPipelineError

Source§

impl GPUPipelineLayoutMethods<DomTypeHolder> for GPUPipelineLayout

Source§

impl GPUQuerySetMethods<DomTypeHolder> for GPUQuerySet

Source§

impl GPUQueueMethods<DomTypeHolder> for GPUQueue

Source§

impl GPURenderBundleEncoderMethods<DomTypeHolder> for GPURenderBundleEncoder

Source§

fn Label(&self) -> USVString

Source§

fn SetLabel(&self, value: USVString)

Source§

fn SetBindGroup( &self, index: u32, bind_group: &GPUBindGroup, dynamic_offsets: Vec<u32>, )

Source§

fn SetPipeline(&self, pipeline: &GPURenderPipeline)

Source§

fn SetIndexBuffer( &self, buffer: &GPUBuffer, index_format: GPUIndexFormat, offset: u64, size: u64, )

Source§

fn SetVertexBuffer(&self, slot: u32, buffer: &GPUBuffer, offset: u64, size: u64)

Source§

fn Draw( &self, vertex_count: u32, instance_count: u32, first_vertex: u32, first_instance: u32, )

Source§

fn DrawIndexed( &self, index_count: u32, instance_count: u32, first_index: u32, base_vertex: i32, first_instance: u32, )

Source§

fn DrawIndirect(&self, indirect_buffer: &GPUBuffer, indirect_offset: u64)

Source§

fn DrawIndexedIndirect(&self, indirect_buffer: &GPUBuffer, indirect_offset: u64)

Source§

fn Finish( &self, descriptor: &GPURenderBundleDescriptor, ) -> DomRoot<GPURenderBundle>

Source§

impl GPURenderBundleMethods<DomTypeHolder> for GPURenderBundle

Source§

impl GPURenderPassEncoderMethods<DomTypeHolder> for GPURenderPassEncoder

Source§

fn Label(&self) -> USVString

Source§

fn SetLabel(&self, value: USVString)

Source§

fn SetBindGroup(&self, index: u32, bind_group: &GPUBindGroup, offsets: Vec<u32>)

Source§

fn SetViewport( &self, x: Finite<f32>, y: Finite<f32>, width: Finite<f32>, height: Finite<f32>, min_depth: Finite<f32>, max_depth: Finite<f32>, )

Source§

fn SetScissorRect(&self, x: u32, y: u32, width: u32, height: u32)

Source§

fn SetBlendConstant(&self, color: GPUColor) -> Fallible<()>

Source§

fn SetStencilReference(&self, reference: u32)

Source§

fn End(&self)

Source§

fn SetPipeline(&self, pipeline: &GPURenderPipeline)

Source§

fn SetIndexBuffer( &self, buffer: &GPUBuffer, index_format: GPUIndexFormat, offset: u64, size: u64, )

Source§

fn SetVertexBuffer(&self, slot: u32, buffer: &GPUBuffer, offset: u64, size: u64)

Source§

fn Draw( &self, vertex_count: u32, instance_count: u32, first_vertex: u32, first_instance: u32, )

Source§

fn DrawIndexed( &self, index_count: u32, instance_count: u32, first_index: u32, base_vertex: i32, first_instance: u32, )

Source§

fn DrawIndirect(&self, buffer: &GPUBuffer, offset: u64)

Source§

fn DrawIndexedIndirect(&self, buffer: &GPUBuffer, offset: u64)

Source§

fn ExecuteBundles(&self, bundles: Vec<DomRoot<GPURenderBundle>>)

Source§

impl GPURenderPipelineMethods<DomTypeHolder> for GPURenderPipeline

Source§

impl GPUSamplerMethods<DomTypeHolder> for GPUSampler

Source§

impl GPUShaderModuleMethods<DomTypeHolder> for GPUShaderModule

Source§

impl GPUSupportedFeaturesMethods<DomTypeHolder> for GPUSupportedFeatures

Source§

fn Size(&self) -> u32

Source§

impl GPUSupportedLimitsMethods<DomTypeHolder> for GPUSupportedLimits

Source§

fn MaxTextureDimension1D(&self) -> u32

Source§

fn MaxTextureDimension2D(&self) -> u32

Source§

fn MaxTextureDimension3D(&self) -> u32

Source§

fn MaxTextureArrayLayers(&self) -> u32

Source§

fn MaxBindGroups(&self) -> u32

Source§

fn MaxBindingsPerBindGroup(&self) -> u32

Source§

fn MaxDynamicUniformBuffersPerPipelineLayout(&self) -> u32

Source§

fn MaxDynamicStorageBuffersPerPipelineLayout(&self) -> u32

Source§

fn MaxSampledTexturesPerShaderStage(&self) -> u32

Source§

fn MaxSamplersPerShaderStage(&self) -> u32

Source§

fn MaxStorageBuffersPerShaderStage(&self) -> u32

Source§

fn MaxStorageTexturesPerShaderStage(&self) -> u32

Source§

fn MaxUniformBuffersPerShaderStage(&self) -> u32

Source§

fn MaxUniformBufferBindingSize(&self) -> u64

Source§

fn MaxStorageBufferBindingSize(&self) -> u64

Source§

fn MinUniformBufferOffsetAlignment(&self) -> u32

Source§

fn MinStorageBufferOffsetAlignment(&self) -> u32

Source§

fn MaxVertexBuffers(&self) -> u32

Source§

fn MaxBufferSize(&self) -> u64

Source§

fn MaxVertexAttributes(&self) -> u32

Source§

fn MaxVertexBufferArrayStride(&self) -> u32

Source§

fn MaxInterStageShaderComponents(&self) -> u32

Source§

fn MaxComputeWorkgroupStorageSize(&self) -> u32

Source§

fn MaxComputeInvocationsPerWorkgroup(&self) -> u32

Source§

fn MaxComputeWorkgroupSizeX(&self) -> u32

Source§

fn MaxComputeWorkgroupSizeY(&self) -> u32

Source§

fn MaxComputeWorkgroupSizeZ(&self) -> u32

Source§

fn MaxComputeWorkgroupsPerDimension(&self) -> u32

Source§

fn MaxBindGroupsPlusVertexBuffers(&self) -> u32

Source§

fn MaxInterStageShaderVariables(&self) -> u32

Source§

fn MaxColorAttachments(&self) -> u32

Source§

fn MaxColorAttachmentBytesPerSample(&self) -> u32

Source§

impl GPUTextureMethods<DomTypeHolder> for GPUTexture

Source§

impl GPUTextureViewMethods<DomTypeHolder> for GPUTextureView

Source§

impl GPUUncapturedErrorEventMethods<DomTypeHolder> for GPUUncapturedErrorEvent

Source§

impl GPUValidationErrorMethods<DomTypeHolder> for GPUValidationError

Source§

impl GainNodeMethods<DomTypeHolder> for GainNode

Source§

impl GamepadButtonListMethods<DomTypeHolder> for GamepadButtonList

Source§

impl GamepadButtonMethods<DomTypeHolder> for GamepadButton

Source§

impl GamepadEventMethods<DomTypeHolder> for GamepadEvent

Source§

impl GamepadHapticActuatorMethods<DomTypeHolder> for GamepadHapticActuator

Source§

impl GamepadMethods<DomTypeHolder> for Gamepad

Source§

impl GamepadPoseMethods<DomTypeHolder> for GamepadPose

Source§

impl GeolocationCoordinatesMethods<DomTypeHolder> for GeolocationCoordinates

Source§

impl GeolocationMethods<DomTypeHolder> for Geolocation

Source§

impl GeolocationPositionErrorMethods<DomTypeHolder> for GeolocationPositionError

Source§

fn Code(&self) -> u16

Source§

fn Message(&self) -> DOMString

Source§

impl GeolocationPositionMethods<DomTypeHolder> for GeolocationPosition

Source§

impl GlobalScopeHelpers<DomTypeHolder> for GlobalScope

Source§

impl HTMLAnchorElementMethods<DomTypeHolder> for HTMLAnchorElement

Source§

fn Text(&self) -> DOMString

Source§

fn SetText(&self, value: DOMString, can_gc: CanGc)

Source§

fn SetRel(&self, rel: DOMString, can_gc: CanGc)

Source§

fn RelList(&self, can_gc: CanGc) -> DomRoot<DOMTokenList>

Source§

fn Href(&self) -> USVString

Source§

fn SetHref(&self, value: USVString, can_gc: CanGc)

Source§

fn Origin(&self) -> USVString

Source§

fn Protocol(&self) -> USVString

Source§

fn SetProtocol(&self, value: USVString, can_gc: CanGc)

Source§

fn Password(&self) -> USVString

Source§

fn SetPassword(&self, value: USVString, can_gc: CanGc)

Source§

fn Hash(&self) -> USVString

Source§

fn SetHash(&self, value: USVString, can_gc: CanGc)

Source§

fn Host(&self) -> USVString

Source§

fn SetHost(&self, value: USVString, can_gc: CanGc)

Source§

fn Hostname(&self) -> USVString

Source§

fn SetHostname(&self, value: USVString, can_gc: CanGc)

Source§

fn Port(&self) -> USVString

Source§

fn SetPort(&self, value: USVString, can_gc: CanGc)

Source§

fn Pathname(&self) -> USVString

Source§

fn SetPathname(&self, value: USVString, can_gc: CanGc)

Source§

fn Search(&self) -> USVString

Source§

fn SetSearch(&self, value: USVString, can_gc: CanGc)

Source§

fn Username(&self) -> USVString

Source§

fn SetUsername(&self, value: USVString, can_gc: CanGc)

Source§

fn ReferrerPolicy(&self) -> DOMString

Source§

fn Rel(&self) -> DOMString

Source§

fn Coords(&self) -> DOMString

Source§

fn SetCoords(&self, value: DOMString)

Source§

fn Name(&self) -> DOMString

Source§

fn SetName(&self, value: DOMString)

Source§

fn Rev(&self) -> DOMString

Source§

fn SetRev(&self, value: DOMString)

Source§

fn Shape(&self) -> DOMString

Source§

fn SetShape(&self, value: DOMString)

Source§

fn Target(&self) -> DOMString

Source§

fn SetTarget(&self, value: DOMString)

Source§

fn SetReferrerPolicy(&self, value: DOMString)

Source§

impl HTMLAreaElementMethods<DomTypeHolder> for HTMLAreaElement

Source§

fn SetRel(&self, rel: DOMString, can_gc: CanGc)

Source§

fn RelList(&self, can_gc: CanGc) -> DomRoot<DOMTokenList>

Source§

fn ReferrerPolicy(&self) -> DOMString

Source§

fn Href(&self) -> USVString

Source§

fn SetHref(&self, value: USVString, can_gc: CanGc)

Source§

fn Origin(&self) -> USVString

Source§

fn Protocol(&self) -> USVString

Source§

fn SetProtocol(&self, value: USVString, can_gc: CanGc)

Source§

fn Password(&self) -> USVString

Source§

fn SetPassword(&self, value: USVString, can_gc: CanGc)

Source§

fn Hash(&self) -> USVString

Source§

fn SetHash(&self, value: USVString, can_gc: CanGc)

Source§

fn Host(&self) -> USVString

Source§

fn SetHost(&self, value: USVString, can_gc: CanGc)

Source§

fn Hostname(&self) -> USVString

Source§

fn SetHostname(&self, value: USVString, can_gc: CanGc)

Source§

fn Port(&self) -> USVString

Source§

fn SetPort(&self, value: USVString, can_gc: CanGc)

Source§

fn Pathname(&self) -> USVString

Source§

fn SetPathname(&self, value: USVString, can_gc: CanGc)

Source§

fn Search(&self) -> USVString

Source§

fn SetSearch(&self, value: USVString, can_gc: CanGc)

Source§

fn Username(&self) -> USVString

Source§

fn SetUsername(&self, value: USVString, can_gc: CanGc)

Source§

fn Target(&self) -> DOMString

Source§

fn SetTarget(&self, value: DOMString)

Source§

fn Rel(&self) -> DOMString

Source§

fn SetReferrerPolicy(&self, value: DOMString)

Source§

impl HTMLAudioElementMethods<DomTypeHolder> for HTMLAudioElement

Source§

impl HTMLBaseElementMethods<DomTypeHolder> for HTMLBaseElement

Source§

impl HTMLBodyElementMethods<DomTypeHolder> for HTMLBodyElement

Source§

fn SetBackground(&self, input: DOMString, can_gc: CanGc)

Source§

fn BgColor(&self) -> DOMString

Source§

fn SetBgColor(&self, value: DOMString)

Source§

fn Text(&self) -> DOMString

Source§

fn SetText(&self, value: DOMString)

Source§

fn Background(&self) -> DOMString

Source§

fn GetOnafterprint(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnafterprint( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnbeforeprint(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnbeforeprint( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnbeforeunload( &self, ) -> Option<Rc<OnBeforeUnloadEventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnbeforeunload( &self, listener: Option<Rc<OnBeforeUnloadEventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnhashchange(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnhashchange( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnlanguagechange(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnlanguagechange( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmessage(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmessage(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnmessageerror(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmessageerror( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnoffline(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnoffline(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnonline(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnonline(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnpagehide(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpagehide( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpagereveal(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpagereveal( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpageshow(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpageshow( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpageswap(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpageswap( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpopstate(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpopstate( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnrejectionhandled( &self, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnrejectionhandled( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnstorage(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnstorage(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnunhandledrejection( &self, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnunhandledrejection( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnunload(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnunload(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOngamepadconnected( &self, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOngamepadconnected( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOngamepaddisconnected( &self, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOngamepaddisconnected( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

impl HTMLButtonElementMethods<DomTypeHolder> for HTMLButtonElement

Source§

fn GetForm(&self) -> Option<DomRoot<HTMLFormElement>>

Source§

fn WillValidate(&self) -> bool

Source§

fn Validity(&self, can_gc: CanGc) -> DomRoot<ValidityState>

Source§

fn CheckValidity(&self, can_gc: CanGc) -> bool

Source§

fn ReportValidity(&self, can_gc: CanGc) -> bool

Source§

fn ValidationMessage(&self) -> DOMString

Source§

fn SetCustomValidity(&self, error: DOMString, can_gc: CanGc)

Source§

fn Disabled(&self) -> bool

Source§

fn SetDisabled(&self, value: bool)

Source§

fn Type(&self) -> DOMString

Source§

fn SetType(&self, value: DOMString)

Source§

fn FormAction(&self) -> DOMString

Source§

fn SetFormAction(&self, value: DOMString)

Source§

fn FormEnctype(&self) -> DOMString

Source§

fn SetFormEnctype(&self, value: DOMString)

Source§

fn FormMethod(&self) -> DOMString

Source§

fn SetFormMethod(&self, value: DOMString)

Source§

fn FormTarget(&self) -> DOMString

Source§

fn SetFormTarget(&self, value: DOMString)

Source§

fn FormNoValidate(&self) -> bool

Source§

fn SetFormNoValidate(&self, value: bool)

Source§

fn Name(&self) -> DOMString

Source§

fn SetName(&self, value: DOMString)

Source§

fn Value(&self) -> DOMString

Source§

fn SetValue(&self, value: DOMString)

Source§

fn Labels(&self) -> DomRoot<NodeList>

Source§

impl HTMLCanvasElementMethods<DomTypeHolder> for HTMLCanvasElement

Source§

impl HTMLCollectionMethods<DomTypeHolder> for HTMLCollection

Source§

impl HTMLDataElementMethods<DomTypeHolder> for HTMLDataElement

Source§

fn Value(&self) -> DOMString

Source§

fn SetValue(&self, value: DOMString)

Source§

impl HTMLDataListElementMethods<DomTypeHolder> for HTMLDataListElement

Source§

impl HTMLDetailsElementMethods<DomTypeHolder> for HTMLDetailsElement

Source§

fn Name(&self) -> DOMString

Source§

fn SetName(&self, value: DOMString)

Source§

fn Open(&self) -> bool

Source§

fn SetOpen(&self, value: bool)

Source§

impl HTMLDialogElementMethods<DomTypeHolder> for HTMLDialogElement

Source§

impl HTMLDivElementMethods<DomTypeHolder> for HTMLDivElement

Source§

fn Align(&self) -> DOMString

Source§

fn SetAlign(&self, value: DOMString)

Source§

impl HTMLDocumentMethods<DomTypeHolder> for HTMLDocument

Source§

impl HTMLElementMethods<DomTypeHolder> for HTMLElement

Source§

fn Style(&self, can_gc: CanGc) -> DomRoot<CSSStyleDeclaration>

Source§

fn Dataset(&self, can_gc: CanGc) -> DomRoot<DOMStringMap>

Source§

fn GetOnerror( &self, can_gc: CanGc, ) -> Option<Rc<OnErrorEventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnerror( &self, listener: Option<Rc<OnErrorEventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnload( &self, can_gc: CanGc, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnload(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnblur( &self, can_gc: CanGc, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnblur(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnfocus( &self, can_gc: CanGc, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnfocus(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnresize( &self, can_gc: CanGc, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnresize(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnscroll( &self, can_gc: CanGc, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnscroll(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn Itemtypes(&self) -> Option<Vec<DOMString>>

Source§

fn PropertyNames(&self) -> Option<Vec<DOMString>>

Source§

fn Click(&self, can_gc: CanGc)

Source§

fn Focus(&self, options: &FocusOptions, can_gc: CanGc)

Source§

fn Blur(&self, can_gc: CanGc)

Source§

fn GetScrollParent(&self) -> Option<DomRoot<Element>>

Source§

fn GetOffsetParent(&self) -> Option<DomRoot<Element>>

Source§

fn OffsetTop(&self) -> i32

Source§

fn OffsetLeft(&self) -> i32

Source§

fn OffsetWidth(&self) -> i32

Source§

fn OffsetHeight(&self) -> i32

Source§

fn InnerText(&self) -> DOMString

Source§

fn SetInnerText(&self, input: DOMString, can_gc: CanGc)

Source§

fn GetOuterText(&self) -> Fallible<DOMString>

Source§

fn SetOuterText(&self, input: DOMString, can_gc: CanGc) -> Fallible<()>

Source§

fn Translate(&self) -> bool

Source§

fn SetTranslate(&self, yesno: bool, can_gc: CanGc)

Source§

fn ContentEditable(&self) -> DOMString

Source§

fn SetContentEditable(&self, _: DOMString)

Source§

fn IsContentEditable(&self) -> bool

Source§

fn AttachInternals(&self, can_gc: CanGc) -> Fallible<DomRoot<ElementInternals>>

Source§

fn Nonce(&self) -> DOMString

Source§

fn SetNonce(&self, value: DOMString)

Source§

fn Autofocus(&self) -> bool

Source§

fn SetAutofocus(&self, autofocus: bool, can_gc: CanGc)

Source§

fn Title(&self) -> DOMString

Source§

fn SetTitle(&self, value: DOMString)

Source§

fn Lang(&self) -> DOMString

Source§

fn SetLang(&self, value: DOMString)

Source§

fn Dir(&self) -> DOMString

Source§

fn SetDir(&self, value: DOMString)

Source§

fn Hidden(&self) -> bool

Source§

fn SetHidden(&self, value: bool)

Source§

fn GetOnabort(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnabort(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnauxclick(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnauxclick( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnanimationstart(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnanimationstart( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnanimationiteration( &self, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnanimationiteration( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnanimationend(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnanimationend( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnanimationcancel(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnanimationcancel( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnbeforeinput(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnbeforeinput( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnbeforematch(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnbeforematch( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnbeforetoggle(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnbeforetoggle( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncancel(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncancel(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOncanplay(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncanplay(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOncanplaythrough(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncanplaythrough( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnchange(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnchange(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnclick(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnclick(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnclose(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnclose(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOncommand(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncommand(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOncontextlost(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncontextlost( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncontextmenu(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncontextmenu( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncontextrestored(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncontextrestored( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncopy(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncopy(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOncuechange(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncuechange( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncut(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncut(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOndblclick(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndblclick( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndrag(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndrag(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOndragend(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragend(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOndragenter(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragenter( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndragleave(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragleave( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndragover(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragover( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndragstart(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragstart( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndrop(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndrop(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOndurationchange(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndurationchange( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnemptied(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnemptied(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnended(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnended(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnformdata(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnformdata( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOninput(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOninput(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOninvalid(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOninvalid(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnkeydown(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnkeydown(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnkeypress(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnkeypress( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnkeyup(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnkeyup(&self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>)

Source§

fn GetOnloadeddata(&self) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnloadeddata( &self, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnloadedmetadata(&self) -> Option<