Skip to main content

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 AnimationTimelineMethods<DomTypeHolder> for AnimationTimeline

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( cx: &mut JSContext, window: &Window, proto: Option<HandleObject<'_>>, 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, cx: &mut CurrentRealm<'_>) -> Rc<Promise>

Source§

fn Close(&self, cx: &mut CurrentRealm<'_>) -> Rc<Promise>

Source§

fn CreateMediaElementSource( &self, cx: &mut JSContext, media_element: &HTMLMediaElement, ) -> Fallible<DomRoot<MediaElementAudioSourceNode>>

Source§

fn CreateMediaStreamSource( &self, cx: &mut JSContext, stream: &MediaStream, ) -> Fallible<DomRoot<MediaStreamAudioSourceNode>>

Source§

fn CreateMediaStreamTrackSource( &self, cx: &mut JSContext, track: &MediaStreamTrack, ) -> Fallible<DomRoot<MediaStreamTrackAudioSourceNode>>

Source§

fn CreateMediaStreamDestination( &self, cx: &mut JSContext, ) -> 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, cx: &mut JSContext, number_of_channels: u32, length: u32, sample_rate: Finite<f32>, ) -> 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, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnstatechange( &self, cx: &mut JSContext, 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, cx: &mut CurrentRealm<'_>, descriptor: StringOrUnsignedLong, ) -> Rc<Promise>

Source§

fn GetDescriptors( &self, cx: &mut CurrentRealm<'_>, descriptor: Option<StringOrUnsignedLong>, ) -> Rc<Promise>

Source§

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

Source§

fn ReadValue(&self, cx: &mut CurrentRealm<'_>) -> Rc<Promise>

Source§

fn WriteValue( &self, cx: &mut CurrentRealm<'_>, value: ArrayBufferViewOrArrayBuffer, ) -> Rc<Promise>

Source§

fn StartNotifications(&self, cx: &mut CurrentRealm<'_>) -> Rc<Promise>

Source§

fn StopNotifications(&self, cx: &mut CurrentRealm<'_>) -> Rc<Promise>

Source§

fn GetOncharacteristicvaluechanged( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncharacteristicvaluechanged( &self, cx: &mut JSContext, 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, cx: &mut CurrentRealm<'_>, characteristic: StringOrUnsignedLong, ) -> Rc<Promise>

Source§

fn GetCharacteristics( &self, cx: &mut CurrentRealm<'_>, characteristic: Option<StringOrUnsignedLong>, ) -> Rc<Promise>

Source§

fn GetIncludedService( &self, cx: &mut CurrentRealm<'_>, service: StringOrUnsignedLong, ) -> Rc<Promise>

Source§

fn GetIncludedServices( &self, cx: &mut CurrentRealm<'_>, service: Option<StringOrUnsignedLong>, ) -> Rc<Promise>

Source§

fn GetOnserviceadded( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

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

Source§

fn GetOnservicechanged( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

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

Source§

fn GetOnserviceremoved( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnserviceremoved( &self, cx: &mut JSContext, 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 CSSPropertyRuleMethods<DomTypeHolder> for CSSPropertyRule

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, cx: &mut JSContext, property: DOMString, value: DOMString, priority: DOMString, ) -> ErrorResult

Source§

fn RemoveProperty( &self, cx: &mut JSContext, property: DOMString, ) -> Fallible<DOMString>

Source§

fn CssFloat(&self) -> DOMString

Source§

fn SetCssFloat(&self, cx: &mut JSContext, value: DOMString) -> ErrorResult

Source§

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

Source§

fn CssText(&self) -> DOMString

Source§

fn SetCssText(&self, cx: &mut JSContext, value: DOMString) -> ErrorResult

Source§

fn Align_items(&self) -> DOMString

Source§

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

Source§

fn AlignItems(&self) -> DOMString

Source§

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

Source§

fn _webkit_align_items(&self) -> DOMString

Source§

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

Source§

fn WebkitAlignItems(&self) -> DOMString

Source§

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

Source§

fn Alignment_baseline(&self) -> DOMString

Source§

fn SetAlignment_baseline( &self, cx: &mut JSContext, value: DOMString, ) -> ErrorResult

Source§

fn AlignmentBaseline(&self) -> DOMString

Source§

fn SetAlignmentBaseline( &self, cx: &mut JSContext, value: DOMString, ) -> ErrorResult

Source§

fn Aspect_ratio(&self) -> DOMString

Source§

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

Source§

fn AspectRatio(&self) -> DOMString

Source§

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

Source§

fn Backface_visibility(&self) -> DOMString

Source§

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

Source§

fn BackfaceVisibility(&self) -> DOMString

Source§

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

Source§

fn _moz_backface_visibility(&self) -> DOMString

Source§

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

Source§

fn MozBackfaceVisibility(&self) -> DOMString

Source§

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

Source§

fn _webkit_backface_visibility(&self) -> DOMString

Source§

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

Source§

fn WebkitBackfaceVisibility(&self) -> DOMString

Source§

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

Source§

fn Baseline_source(&self) -> DOMString

Source§

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

Source§

fn BaselineSource(&self) -> DOMString

Source§

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

Source§

fn Border_collapse(&self) -> DOMString

Source§

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

Source§

fn BorderCollapse(&self) -> DOMString

Source§

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

Source§

fn Border_image_repeat(&self) -> DOMString

Source§

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

Source§

fn BorderImageRepeat(&self) -> DOMString

Source§

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

Source§

fn Box_sizing(&self) -> DOMString

Source§

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

Source§

fn BoxSizing(&self) -> DOMString

Source§

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

Source§

fn _moz_box_sizing(&self) -> DOMString

Source§

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

Source§

fn MozBoxSizing(&self) -> DOMString

Source§

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

Source§

fn _webkit_box_sizing(&self) -> DOMString

Source§

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

Source§

fn WebkitBoxSizing(&self) -> DOMString

Source§

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

Source§

fn Caption_side(&self) -> DOMString

Source§

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

Source§

fn CaptionSide(&self) -> DOMString

Source§

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

Source§

fn Clear(&self) -> DOMString

Source§

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

Source§

fn Column_count(&self) -> DOMString

Source§

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

Source§

fn ColumnCount(&self) -> DOMString

Source§

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

Source§

fn Column_span(&self) -> DOMString

Source§

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

Source§

fn ColumnSpan(&self) -> DOMString

Source§

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

Source§

fn Contain(&self) -> DOMString

Source§

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

Source§

fn Container_type(&self) -> DOMString

Source§

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

Source§

fn ContainerType(&self) -> DOMString

Source§

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

Source§

fn Direction(&self) -> DOMString

Source§

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

Source§

fn Display(&self) -> DOMString

Source§

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

Source§

fn Empty_cells(&self) -> DOMString

Source§

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

Source§

fn EmptyCells(&self) -> DOMString

Source§

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

Source§

fn Flex_direction(&self) -> DOMString

Source§

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

Source§

fn FlexDirection(&self) -> DOMString

Source§

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

Source§

fn _webkit_flex_direction(&self) -> DOMString

Source§

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

Source§

fn WebkitFlexDirection(&self) -> DOMString

Source§

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

Source§

fn Flex_wrap(&self) -> DOMString

Source§

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

Source§

fn FlexWrap(&self) -> DOMString

Source§

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

Source§

fn _webkit_flex_wrap(&self) -> DOMString

Source§

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

Source§

fn WebkitFlexWrap(&self) -> DOMString

Source§

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

Source§

fn Float(&self) -> DOMString

Source§

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

Source§

fn Font_kerning(&self) -> DOMString

Source§

fn SetFont_kerning(&self, cx: &mut JSContext, value: DOMString) -> ErrorResult

Source§

fn FontKerning(&self) -> DOMString

Source§

fn SetFontKerning(&self, cx: &mut JSContext, value: DOMString) -> ErrorResult

Source§

fn Font_language_override(&self) -> DOMString

Source§

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

Source§

fn FontLanguageOverride(&self) -> DOMString

Source§

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

Source§

fn _moz_font_language_override(&self) -> DOMString

Source§

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

Source§

fn MozFontLanguageOverride(&self) -> DOMString

Source§

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

Source§

fn Font_optical_sizing(&self) -> DOMString

Source§

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

Source§

fn FontOpticalSizing(&self) -> DOMString

Source§

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

Source§

fn Font_stretch(&self) -> DOMString

Source§

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

Source§

fn FontStretch(&self) -> DOMString

Source§

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

Source§

fn Font_style(&self) -> DOMString

Source§

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

Source§

fn FontStyle(&self) -> DOMString

Source§

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

Source§

fn Font_synthesis_weight(&self) -> DOMString

Source§

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

Source§

fn FontSynthesisWeight(&self) -> DOMString

Source§

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

Source§

fn Font_variant_caps(&self) -> DOMString

Source§

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

Source§

fn FontVariantCaps(&self) -> DOMString

Source§

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

Source§

fn Font_weight(&self) -> DOMString

Source§

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

Source§

fn FontWeight(&self) -> DOMString

Source§

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

Source§

fn Grid_auto_flow(&self) -> DOMString

Source§

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

Source§

fn GridAutoFlow(&self) -> DOMString

Source§

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

Source§

fn Image_rendering(&self) -> DOMString

Source§

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

Source§

fn ImageRendering(&self) -> DOMString

Source§

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

Source§

fn Isolation(&self) -> DOMString

Source§

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

Source§

fn Justify_items(&self) -> DOMString

Source§

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

Source§

fn JustifyItems(&self) -> DOMString

Source§

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

Source§

fn Line_break(&self) -> DOMString

Source§

fn SetLine_break(&self, cx: &mut JSContext, value: DOMString) -> ErrorResult

Source§

fn LineBreak(&self) -> DOMString

Source§

fn SetLineBreak(&self, cx: &mut JSContext, value: DOMString) -> ErrorResult

Source§

fn List_style_position(&self) -> DOMString

Source§

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

Source§

fn ListStylePosition(&self) -> DOMString

Source§

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

Source§

fn Mix_blend_mode(&self) -> DOMString

Source§

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

Source§

fn MixBlendMode(&self) -> DOMString

Source§

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

Source§

fn Object_fit(&self) -> DOMString

Source§

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

Source§

fn ObjectFit(&self) -> DOMString

Source§

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

Source§

fn Opacity(&self) -> DOMString

Source§

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

Source§

fn Order(&self) -> DOMString

Source§

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

Source§

fn _webkit_order(&self) -> DOMString

Source§

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

Source§

fn WebkitOrder(&self) -> DOMString

Source§

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

Source§

fn Outline_style(&self) -> DOMString

Source§

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

Source§

fn OutlineStyle(&self) -> DOMString

Source§

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

Source§

fn Overflow_wrap(&self) -> DOMString

Source§

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

Source§

fn OverflowWrap(&self) -> DOMString

Source§

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

Source§

fn Word_wrap(&self) -> DOMString

Source§

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

Source§

fn WordWrap(&self) -> DOMString

Source§

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

Source§

fn Pointer_events(&self) -> DOMString

Source§

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

Source§

fn PointerEvents(&self) -> DOMString

Source§

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

Source§

fn Position(&self) -> DOMString

Source§

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

Source§

fn Position_area(&self) -> DOMString

Source§

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

Source§

fn PositionArea(&self) -> DOMString

Source§

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

Source§

fn Table_layout(&self) -> DOMString

Source§

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

Source§

fn TableLayout(&self) -> DOMString

Source§

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

Source§

fn Text_align(&self) -> DOMString

Source§

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

Source§

fn TextAlign(&self) -> DOMString

Source§

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

Source§

fn Text_align_last(&self) -> DOMString

Source§

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

Source§

fn TextAlignLast(&self) -> DOMString

Source§

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

Source§

fn Text_decoration_line(&self) -> DOMString

Source§

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

Source§

fn TextDecorationLine(&self) -> DOMString

Source§

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

Source§

fn Text_decoration_style(&self) -> DOMString

Source§

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

Source§

fn TextDecorationStyle(&self) -> DOMString

Source§

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

Source§

fn Text_justify(&self) -> DOMString

Source§

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

Source§

fn TextJustify(&self) -> DOMString

Source§

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

Source§

fn Text_rendering(&self) -> DOMString

Source§

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

Source§

fn TextRendering(&self) -> DOMString

Source§

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

Source§

fn Text_transform(&self) -> DOMString

Source§

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

Source§

fn TextTransform(&self) -> DOMString

Source§

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

Source§

fn Text_wrap_mode(&self) -> DOMString

Source§

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

Source§

fn TextWrapMode(&self) -> DOMString

Source§

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

Source§

fn Transform_style(&self) -> DOMString

Source§

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

Source§

fn TransformStyle(&self) -> DOMString

Source§

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

Source§

fn _moz_transform_style(&self) -> DOMString

Source§

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

Source§

fn MozTransformStyle(&self) -> DOMString

Source§

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

Source§

fn _webkit_transform_style(&self) -> DOMString

Source§

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

Source§

fn WebkitTransformStyle(&self) -> DOMString

Source§

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

Source§

fn Unicode_bidi(&self) -> DOMString

Source§

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

Source§

fn UnicodeBidi(&self) -> DOMString

Source§

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

Source§

fn User_select(&self) -> DOMString

Source§

fn SetUser_select(&self, cx: &mut JSContext, value: DOMString) -> ErrorResult

Source§

fn UserSelect(&self) -> DOMString

Source§

fn SetUserSelect(&self, cx: &mut JSContext, value: DOMString) -> ErrorResult

Source§

fn _moz_user_select(&self) -> DOMString

Source§

fn Set_moz_user_select( &self, cx: &mut JSContext, value: DOMString, ) -> ErrorResult

Source§

fn MozUserSelect(&self) -> DOMString

Source§

fn SetMozUserSelect(&self, cx: &mut JSContext, value: DOMString) -> ErrorResult

Source§

fn _webkit_user_select(&self) -> DOMString

Source§

fn Set_webkit_user_select( &self, cx: &mut JSContext, value: DOMString, ) -> ErrorResult

Source§

fn WebkitUserSelect(&self) -> DOMString

Source§

fn SetWebkitUserSelect( &self, cx: &mut JSContext, value: DOMString, ) -> ErrorResult

Source§

fn Visibility(&self) -> DOMString

Source§

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

Source§

fn _webkit_text_security(&self) -> DOMString

Source§

fn Set_webkit_text_security( &self, cx: &mut JSContext, value: DOMString, ) -> ErrorResult

Source§

fn WebkitTextSecurity(&self) -> DOMString

Source§

fn SetWebkitTextSecurity( &self, cx: &mut JSContext, value: DOMString, ) -> ErrorResult

Source§

fn White_space_collapse(&self) -> DOMString

Source§

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

Source§

fn WhiteSpaceCollapse(&self) -> DOMString

Source§

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

Source§

fn Word_break(&self) -> DOMString

Source§

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

Source§

fn WordBreak(&self) -> DOMString

Source§

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

Source§

fn Writing_mode(&self) -> DOMString

Source§

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

Source§

fn WritingMode(&self) -> DOMString

Source§

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

Source§

fn Z_index(&self) -> DOMString

Source§

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

Source§

fn ZIndex(&self) -> DOMString

Source§

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

Source§

fn Align_content(&self) -> DOMString

Source§

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

Source§

fn AlignContent(&self) -> DOMString

Source§

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

Source§

fn _webkit_align_content(&self) -> DOMString

Source§

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

Source§

fn WebkitAlignContent(&self) -> DOMString

Source§

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

Source§

fn Justify_content(&self) -> DOMString

Source§

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

Source§

fn JustifyContent(&self) -> DOMString

Source§

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

Source§

fn _webkit_justify_content(&self) -> DOMString

Source§

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

Source§

fn WebkitJustifyContent(&self) -> DOMString

Source§

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

Source§

fn Flex_grow(&self) -> DOMString

Source§

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

Source§

fn FlexGrow(&self) -> DOMString

Source§

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

Source§

fn _webkit_flex_grow(&self) -> DOMString

Source§

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

Source§

fn WebkitFlexGrow(&self) -> DOMString

Source§

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

Source§

fn Flex_shrink(&self) -> DOMString

Source§

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

Source§

fn FlexShrink(&self) -> DOMString

Source§

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

Source§

fn _webkit_flex_shrink(&self) -> DOMString

Source§

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

Source§

fn WebkitFlexShrink(&self) -> DOMString

Source§

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

Source§

fn Align_self(&self) -> DOMString

Source§

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

Source§

fn AlignSelf(&self) -> DOMString

Source§

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

Source§

fn _webkit_align_self(&self) -> DOMString

Source§

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

Source§

fn WebkitAlignSelf(&self) -> DOMString

Source§

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

Source§

fn Justify_self(&self) -> DOMString

Source§

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

Source§

fn JustifySelf(&self) -> DOMString

Source§

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

Source§

fn Overflow_block(&self) -> DOMString

Source§

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

Source§

fn OverflowBlock(&self) -> DOMString

Source§

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

Source§

fn Overflow_inline(&self) -> DOMString

Source§

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

Source§

fn OverflowInline(&self) -> DOMString

Source§

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

Source§

fn Overflow_x(&self) -> DOMString

Source§

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

Source§

fn OverflowX(&self) -> DOMString

Source§

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

Source§

fn Overflow_y(&self) -> DOMString

Source§

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

Source§

fn OverflowY(&self) -> DOMString

Source§

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

Source§

fn Border_block_end_style(&self) -> DOMString

Source§

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

Source§

fn BorderBlockEndStyle(&self) -> DOMString

Source§

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

Source§

fn Border_block_start_style(&self) -> DOMString

Source§

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

Source§

fn BorderBlockStartStyle(&self) -> DOMString

Source§

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

Source§

fn Border_bottom_style(&self) -> DOMString

Source§

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

Source§

fn BorderBottomStyle(&self) -> DOMString

Source§

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

Source§

fn Border_inline_end_style(&self) -> DOMString

Source§

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

Source§

fn BorderInlineEndStyle(&self) -> DOMString

Source§

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

Source§

fn Border_inline_start_style(&self) -> DOMString

Source§

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

Source§

fn BorderInlineStartStyle(&self) -> DOMString

Source§

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

Source§

fn Border_left_style(&self) -> DOMString

Source§

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

Source§

fn BorderLeftStyle(&self) -> DOMString

Source§

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

Source§

fn Border_right_style(&self) -> DOMString

Source§

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

Source§

fn BorderRightStyle(&self) -> DOMString

Source§

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

Source§

fn Border_top_style(&self) -> DOMString

Source§

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

Source§

fn BorderTopStyle(&self) -> DOMString

Source§

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

Source§

fn Animation_composition(&self) -> DOMString

Source§

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

Source§

fn AnimationComposition(&self) -> DOMString

Source§

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

Source§

fn Animation_delay(&self) -> DOMString

Source§

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

Source§

fn AnimationDelay(&self) -> DOMString

Source§

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

Source§

fn _moz_animation_delay(&self) -> DOMString

Source§

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

Source§

fn MozAnimationDelay(&self) -> DOMString

Source§

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

Source§

fn _webkit_animation_delay(&self) -> DOMString

Source§

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

Source§

fn WebkitAnimationDelay(&self) -> DOMString

Source§

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

Source§

fn Animation_direction(&self) -> DOMString

Source§

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

Source§

fn AnimationDirection(&self) -> DOMString

Source§

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

Source§

fn _moz_animation_direction(&self) -> DOMString

Source§

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

Source§

fn MozAnimationDirection(&self) -> DOMString

Source§

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

Source§

fn _webkit_animation_direction(&self) -> DOMString

Source§

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

Source§

fn WebkitAnimationDirection(&self) -> DOMString

Source§

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

Source§

fn Animation_duration(&self) -> DOMString

Source§

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

Source§

fn AnimationDuration(&self) -> DOMString

Source§

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

Source§

fn _moz_animation_duration(&self) -> DOMString

Source§

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

Source§

fn MozAnimationDuration(&self) -> DOMString

Source§

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

Source§

fn _webkit_animation_duration(&self) -> DOMString

Source§

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

Source§

fn WebkitAnimationDuration(&self) -> DOMString

Source§

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

Source§

fn Animation_fill_mode(&self) -> DOMString

Source§

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

Source§

fn AnimationFillMode(&self) -> DOMString

Source§

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

Source§

fn _moz_animation_fill_mode(&self) -> DOMString

Source§

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

Source§

fn MozAnimationFillMode(&self) -> DOMString

Source§

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

Source§

fn _webkit_animation_fill_mode(&self) -> DOMString

Source§

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

Source§

fn WebkitAnimationFillMode(&self) -> DOMString

Source§

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

Source§

fn Animation_iteration_count(&self) -> DOMString

Source§

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

Source§

fn AnimationIterationCount(&self) -> DOMString

Source§

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

Source§

fn _moz_animation_iteration_count(&self) -> DOMString

Source§

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

Source§

fn MozAnimationIterationCount(&self) -> DOMString

Source§

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

Source§

fn _webkit_animation_iteration_count(&self) -> DOMString

Source§

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

Source§

fn WebkitAnimationIterationCount(&self) -> DOMString

Source§

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

Source§

fn Animation_name(&self) -> DOMString

Source§

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

Source§

fn AnimationName(&self) -> DOMString

Source§

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

Source§

fn _moz_animation_name(&self) -> DOMString

Source§

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

Source§

fn MozAnimationName(&self) -> DOMString

Source§

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

Source§

fn _webkit_animation_name(&self) -> DOMString

Source§

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

Source§

fn WebkitAnimationName(&self) -> DOMString

Source§

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

Source§

fn Animation_play_state(&self) -> DOMString

Source§

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

Source§

fn AnimationPlayState(&self) -> DOMString

Source§

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

Source§

fn _moz_animation_play_state(&self) -> DOMString

Source§

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

Source§

fn MozAnimationPlayState(&self) -> DOMString

Source§

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

Source§

fn _webkit_animation_play_state(&self) -> DOMString

Source§

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

Source§

fn WebkitAnimationPlayState(&self) -> DOMString

Source§

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

Source§

fn Animation_range_end(&self) -> DOMString

Source§

fn SetAnimation_range_end( &self, cx: &mut JSContext, value: DOMString, ) -> ErrorResult

Source§

fn AnimationRangeEnd(&self) -> DOMString

Source§

fn SetAnimationRangeEnd( &self, cx: &mut JSContext, value: DOMString, ) -> ErrorResult

Source§

fn Animation_range_start(&self) -> DOMString

Source§

fn SetAnimation_range_start( &self, cx: &mut JSContext, value: DOMString, ) -> ErrorResult

Source§

fn AnimationRangeStart(&self) -> DOMString

Source§

fn SetAnimationRangeStart( &self, cx: &mut JSContext, value: DOMString, ) -> ErrorResult

Source§

fn Animation_timeline(&self) -> DOMString

Source§

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

Source§

fn AnimationTimeline(&self) -> DOMString

Source§

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

Source§

fn Animation_timing_function(&self) -> DOMString

Source§

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

Source§

fn AnimationTimingFunction(&self) -> DOMString

Source§

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

Source§

fn _moz_animation_timing_function(&self) -> DOMString

Source§

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

Source§

fn MozAnimationTimingFunction(&self) -> DOMString

Source§

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

Source§

fn _webkit_animation_timing_function(&self) -> DOMString

Source§

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

Source§

fn WebkitAnimationTimingFunction(&self) -> DOMString

Source§

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

Source§

fn Backdrop_filter(&self) -> DOMString

Source§

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

Source§

fn BackdropFilter(&self) -> DOMString

Source§

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

Source§

fn Background_attachment(&self) -> DOMString

Source§

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

Source§

fn BackgroundAttachment(&self) -> DOMString

Source§

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

Source§

fn Background_blend_mode(&self) -> DOMString

Source§

fn SetBackground_blend_mode( &self, cx: &mut JSContext, value: DOMString, ) -> ErrorResult

Source§

fn BackgroundBlendMode(&self) -> DOMString

Source§

fn SetBackgroundBlendMode( &self, cx: &mut JSContext, value: DOMString, ) -> ErrorResult

Source§

fn Background_clip(&self) -> DOMString

Source§

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

Source§

fn BackgroundClip(&self) -> DOMString

Source§

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

Source§

fn _webkit_background_clip(&self) -> DOMString

Source§

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

Source§

fn WebkitBackgroundClip(&self) -> DOMString

Source§

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

Source§

fn Background_image(&self) -> DOMString

Source§

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

Source§

fn BackgroundImage(&self) -> DOMString

Source§

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

Source§

fn Background_origin(&self) -> DOMString

Source§

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

Source§

fn BackgroundOrigin(&self) -> DOMString

Source§

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

Source§

fn _webkit_background_origin(&self) -> DOMString

Source§

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

Source§

fn WebkitBackgroundOrigin(&self) -> DOMString

Source§

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

Source§

fn Background_position_x(&self) -> DOMString

Source§

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

Source§

fn BackgroundPositionX(&self) -> DOMString

Source§

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

Source§

fn Background_position_y(&self) -> DOMString

Source§

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

Source§

fn BackgroundPositionY(&self) -> DOMString

Source§

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

Source§

fn Background_repeat(&self) -> DOMString

Source§

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

Source§

fn BackgroundRepeat(&self) -> DOMString

Source§

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

Source§

fn Background_size(&self) -> DOMString

Source§

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

Source§

fn BackgroundSize(&self) -> DOMString

Source§

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

Source§

fn _webkit_background_size(&self) -> DOMString

Source§

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

Source§

fn WebkitBackgroundSize(&self) -> DOMString

Source§

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

Source§

fn Baseline_shift(&self) -> DOMString

Source§

fn SetBaseline_shift(&self, cx: &mut JSContext, value: DOMString) -> ErrorResult

Source§

fn BaselineShift(&self) -> DOMString

Source§

fn SetBaselineShift(&self, cx: &mut JSContext, value: DOMString) -> ErrorResult

Source§

fn Border_image_outset(&self) -> DOMString

Source§

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

Source§

fn BorderImageOutset(&self) -> DOMString

Source§

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

Source§

fn Border_image_slice(&self) -> DOMString

Source§

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

Source§

fn BorderImageSlice(&self) -> DOMString

Source§

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

Source§

fn Border_image_width(&self) -> DOMString

Source§

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

Source§

fn BorderImageWidth(&self) -> DOMString

Source§

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

Source§

fn Border_spacing(&self) -> DOMString

Source§

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

Source§

fn BorderSpacing(&self) -> DOMString

Source§

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

Source§

fn Box_shadow(&self) -> DOMString

Source§

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

Source§

fn BoxShadow(&self) -> DOMString

Source§

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

Source§

fn _webkit_box_shadow(&self) -> DOMString

Source§

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

Source§

fn WebkitBoxShadow(&self) -> DOMString

Source§

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

Source§

fn Caret_color(&self) -> DOMString

Source§

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

Source§

fn CaretColor(&self) -> DOMString

Source§

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

Source§

fn Clip(&self) -> DOMString

Source§

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

Source§

fn Clip_path(&self) -> DOMString

Source§

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

Source§

fn ClipPath(&self) -> DOMString

Source§

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

Source§

fn _webkit_clip_path(&self) -> DOMString

Source§

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

Source§

fn WebkitClipPath(&self) -> DOMString

Source§

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

Source§

fn Color(&self) -> DOMString

Source§

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

Source§

fn Color_scheme(&self) -> DOMString

Source§

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

Source§

fn ColorScheme(&self) -> DOMString

Source§

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

Source§

fn Column_width(&self) -> DOMString

Source§

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

Source§

fn ColumnWidth(&self) -> DOMString

Source§

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

Source§

fn Container_name(&self) -> DOMString

Source§

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

Source§

fn ContainerName(&self) -> DOMString

Source§

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

Source§

fn Content(&self) -> DOMString

Source§

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

Source§

fn Counter_increment(&self) -> DOMString

Source§

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

Source§

fn CounterIncrement(&self) -> DOMString

Source§

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

Source§

fn Counter_reset(&self) -> DOMString

Source§

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

Source§

fn CounterReset(&self) -> DOMString

Source§

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

Source§

fn Cursor(&self) -> DOMString

Source§

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

Source§

fn Filter(&self) -> DOMString

Source§

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

Source§

fn _webkit_filter(&self) -> DOMString

Source§

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

Source§

fn WebkitFilter(&self) -> DOMString

Source§

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

Source§

fn Flex_basis(&self) -> DOMString

Source§

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

Source§

fn FlexBasis(&self) -> DOMString

Source§

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

Source§

fn _webkit_flex_basis(&self) -> DOMString

Source§

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

Source§

fn WebkitFlexBasis(&self) -> DOMString

Source§

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

Source§

fn Font_family(&self) -> DOMString

Source§

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

Source§

fn FontFamily(&self) -> DOMString

Source§

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

Source§

fn Font_size(&self) -> DOMString

Source§

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

Source§

fn FontSize(&self) -> DOMString

Source§

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

Source§

fn Font_variation_settings(&self) -> DOMString

Source§

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

Source§

fn FontVariationSettings(&self) -> DOMString

Source§

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

Source§

fn Grid_template_areas(&self) -> DOMString

Source§

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

Source§

fn GridTemplateAreas(&self) -> DOMString

Source§

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

Source§

fn Letter_spacing(&self) -> DOMString

Source§

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

Source§

fn LetterSpacing(&self) -> DOMString

Source§

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

Source§

fn Line_height(&self) -> DOMString

Source§

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

Source§

fn LineHeight(&self) -> DOMString

Source§

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

Source§

fn List_style_type(&self) -> DOMString

Source§

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

Source§

fn ListStyleType(&self) -> DOMString

Source§

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

Source§

fn Mask_image(&self) -> DOMString

Source§

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

Source§

fn MaskImage(&self) -> DOMString

Source§

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

Source§

fn _webkit_mask_image(&self) -> DOMString

Source§

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

Source§

fn WebkitMaskImage(&self) -> DOMString

Source§

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

Source§

fn Offset_path(&self) -> DOMString

Source§

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

Source§

fn OffsetPath(&self) -> DOMString

Source§

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

Source§

fn Outline_offset(&self) -> DOMString

Source§

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

Source§

fn OutlineOffset(&self) -> DOMString

Source§

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

Source§

fn Overflow_clip_margin(&self) -> DOMString

Source§

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

Source§

fn OverflowClipMargin(&self) -> DOMString

Source§

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

Source§

fn Perspective(&self) -> DOMString

Source§

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

Source§

fn _moz_perspective(&self) -> DOMString

Source§

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

Source§

fn MozPerspective(&self) -> DOMString

Source§

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

Source§

fn Position_try_fallbacks(&self) -> DOMString

Source§

fn SetPosition_try_fallbacks( &self, cx: &mut JSContext, value: DOMString, ) -> ErrorResult

Source§

fn PositionTryFallbacks(&self) -> DOMString

Source§

fn SetPositionTryFallbacks( &self, cx: &mut JSContext, value: DOMString, ) -> ErrorResult

Source§

fn Quotes(&self) -> DOMString

Source§

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

Source§

fn Rotate(&self) -> DOMString

Source§

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

Source§

fn Scale(&self) -> DOMString

Source§

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

Source§

fn Tab_size(&self) -> DOMString

Source§

fn SetTab_size(&self, cx: &mut JSContext, value: DOMString) -> ErrorResult

Source§

fn TabSize(&self) -> DOMString

Source§

fn SetTabSize(&self, cx: &mut JSContext, value: DOMString) -> ErrorResult

Source§

fn Text_indent(&self) -> DOMString

Source§

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

Source§

fn TextIndent(&self) -> DOMString

Source§

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

Source§

fn Text_overflow(&self) -> DOMString

Source§

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

Source§

fn TextOverflow(&self) -> DOMString

Source§

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

Source§

fn Text_shadow(&self) -> DOMString

Source§

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

Source§

fn TextShadow(&self) -> DOMString

Source§

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

Source§

fn Transform(&self) -> DOMString

Source§

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

Source§

fn _moz_transform(&self) -> DOMString

Source§

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

Source§

fn MozTransform(&self) -> DOMString

Source§

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

Source§

fn Transform_origin(&self) -> DOMString

Source§

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

Source§

fn TransformOrigin(&self) -> DOMString

Source§

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

Source§

fn _moz_transform_origin(&self) -> DOMString

Source§

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

Source§

fn MozTransformOrigin(&self) -> DOMString

Source§

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

Source§

fn _webkit_transform_origin(&self) -> DOMString

Source§

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

Source§

fn WebkitTransformOrigin(&self) -> DOMString

Source§

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

Source§

fn Transition_behavior(&self) -> DOMString

Source§

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

Source§

fn TransitionBehavior(&self) -> DOMString

Source§

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

Source§

fn Transition_delay(&self) -> DOMString

Source§

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

Source§

fn TransitionDelay(&self) -> DOMString

Source§

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

Source§

fn _moz_transition_delay(&self) -> DOMString

Source§

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

Source§

fn MozTransitionDelay(&self) -> DOMString

Source§

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

Source§

fn _webkit_transition_delay(&self) -> DOMString

Source§

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

Source§

fn WebkitTransitionDelay(&self) -> DOMString

Source§

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

Source§

fn Transition_duration(&self) -> DOMString

Source§

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

Source§

fn TransitionDuration(&self) -> DOMString

Source§

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

Source§

fn _moz_transition_duration(&self) -> DOMString

Source§

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

Source§

fn MozTransitionDuration(&self) -> DOMString

Source§

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

Source§

fn _webkit_transition_duration(&self) -> DOMString

Source§

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

Source§

fn WebkitTransitionDuration(&self) -> DOMString

Source§

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

Source§

fn Transition_property(&self) -> DOMString

Source§

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

Source§

fn TransitionProperty(&self) -> DOMString

Source§

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

Source§

fn _moz_transition_property(&self) -> DOMString

Source§

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

Source§

fn MozTransitionProperty(&self) -> DOMString

Source§

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

Source§

fn _webkit_transition_property(&self) -> DOMString

Source§

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

Source§

fn WebkitTransitionProperty(&self) -> DOMString

Source§

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

Source§

fn Transition_timing_function(&self) -> DOMString

Source§

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

Source§

fn TransitionTimingFunction(&self) -> DOMString

Source§

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

Source§

fn _moz_transition_timing_function(&self) -> DOMString

Source§

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

Source§

fn MozTransitionTimingFunction(&self) -> DOMString

Source§

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

Source§

fn _webkit_transition_timing_function(&self) -> DOMString

Source§

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

Source§

fn WebkitTransitionTimingFunction(&self) -> DOMString

Source§

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

Source§

fn Translate(&self) -> DOMString

Source§

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

Source§

fn Will_change(&self) -> DOMString

Source§

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

Source§

fn WillChange(&self) -> DOMString

Source§

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

Source§

fn Word_spacing(&self) -> DOMString

Source§

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

Source§

fn WordSpacing(&self) -> DOMString

Source§

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

Source§

fn Object_position(&self) -> DOMString

Source§

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

Source§

fn ObjectPosition(&self) -> DOMString

Source§

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

Source§

fn Perspective_origin(&self) -> DOMString

Source§

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

Source§

fn PerspectiveOrigin(&self) -> DOMString

Source§

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

Source§

fn _moz_perspective_origin(&self) -> DOMString

Source§

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

Source§

fn MozPerspectiveOrigin(&self) -> DOMString

Source§

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

Source§

fn _webkit_perspective_origin(&self) -> DOMString

Source§

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

Source§

fn WebkitPerspectiveOrigin(&self) -> DOMString

Source§

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

Source§

fn Grid_template_columns(&self) -> DOMString

Source§

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

Source§

fn GridTemplateColumns(&self) -> DOMString

Source§

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

Source§

fn Grid_template_rows(&self) -> DOMString

Source§

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

Source§

fn GridTemplateRows(&self) -> DOMString

Source§

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

Source§

fn Border_image_source(&self) -> DOMString

Source§

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

Source§

fn BorderImageSource(&self) -> DOMString

Source§

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

Source§

fn List_style_image(&self) -> DOMString

Source§

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

Source§

fn ListStyleImage(&self) -> DOMString

Source§

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

Source§

fn Grid_auto_columns(&self) -> DOMString

Source§

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

Source§

fn GridAutoColumns(&self) -> DOMString

Source§

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

Source§

fn Grid_auto_rows(&self) -> DOMString

Source§

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

Source§

fn GridAutoRows(&self) -> DOMString

Source§

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

Source§

fn Column_gap(&self) -> DOMString

Source§

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

Source§

fn ColumnGap(&self) -> DOMString

Source§

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

Source§

fn Grid_column_gap(&self) -> DOMString

Source§

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

Source§

fn GridColumnGap(&self) -> DOMString

Source§

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

Source§

fn Row_gap(&self) -> DOMString

Source§

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

Source§

fn RowGap(&self) -> DOMString

Source§

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

Source§

fn Grid_row_gap(&self) -> DOMString

Source§

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

Source§

fn GridRowGap(&self) -> DOMString

Source§

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

Source§

fn Grid_column_end(&self) -> DOMString

Source§

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

Source§

fn GridColumnEnd(&self) -> DOMString

Source§

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

Source§

fn Grid_column_start(&self) -> DOMString

Source§

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

Source§

fn GridColumnStart(&self) -> DOMString

Source§

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

Source§

fn Grid_row_end(&self) -> DOMString

Source§

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

Source§

fn GridRowEnd(&self) -> DOMString

Source§

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

Source§

fn Grid_row_start(&self) -> DOMString

Source§

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

Source§

fn GridRowStart(&self) -> DOMString

Source§

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

Source§

fn Max_block_size(&self) -> DOMString

Source§

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

Source§

fn MaxBlockSize(&self) -> DOMString

Source§

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

Source§

fn Max_height(&self) -> DOMString

Source§

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

Source§

fn MaxHeight(&self) -> DOMString

Source§

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

Source§

fn Max_inline_size(&self) -> DOMString

Source§

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

Source§

fn MaxInlineSize(&self) -> DOMString

Source§

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

Source§

fn Max_width(&self) -> DOMString

Source§

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

Source§

fn MaxWidth(&self) -> DOMString

Source§

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

Source§

fn Border_bottom_left_radius(&self) -> DOMString

Source§

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

Source§

fn BorderBottomLeftRadius(&self) -> DOMString

Source§

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

Source§

fn _webkit_border_bottom_left_radius(&self) -> DOMString

Source§

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

Source§

fn WebkitBorderBottomLeftRadius(&self) -> DOMString

Source§

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

Source§

fn Border_bottom_right_radius(&self) -> DOMString

Source§

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

Source§

fn BorderBottomRightRadius(&self) -> DOMString

Source§

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

Source§

fn _webkit_border_bottom_right_radius(&self) -> DOMString

Source§

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

Source§

fn WebkitBorderBottomRightRadius(&self) -> DOMString

Source§

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

Source§

fn Border_end_end_radius(&self) -> DOMString

Source§

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

Source§

fn BorderEndEndRadius(&self) -> DOMString

Source§

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

Source§

fn Border_end_start_radius(&self) -> DOMString

Source§

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

Source§

fn BorderEndStartRadius(&self) -> DOMString

Source§

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

Source§

fn Border_start_end_radius(&self) -> DOMString

Source§

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

Source§

fn BorderStartEndRadius(&self) -> DOMString

Source§

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

Source§

fn Border_start_start_radius(&self) -> DOMString

Source§

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

Source§

fn BorderStartStartRadius(&self) -> DOMString

Source§

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

Source§

fn Border_top_left_radius(&self) -> DOMString

Source§

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

Source§

fn BorderTopLeftRadius(&self) -> DOMString

Source§

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

Source§

fn _webkit_border_top_left_radius(&self) -> DOMString

Source§

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

Source§

fn WebkitBorderTopLeftRadius(&self) -> DOMString

Source§

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

Source§

fn Border_top_right_radius(&self) -> DOMString

Source§

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

Source§

fn BorderTopRightRadius(&self) -> DOMString

Source§

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

Source§

fn _webkit_border_top_right_radius(&self) -> DOMString

Source§

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

Source§

fn WebkitBorderTopRightRadius(&self) -> DOMString

Source§

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

Source§

fn Bottom(&self) -> DOMString

Source§

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

Source§

fn Inset_block_end(&self) -> DOMString

Source§

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

Source§

fn InsetBlockEnd(&self) -> DOMString

Source§

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

Source§

fn Inset_block_start(&self) -> DOMString

Source§

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

Source§

fn InsetBlockStart(&self) -> DOMString

Source§

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

Source§

fn Inset_inline_end(&self) -> DOMString

Source§

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

Source§

fn InsetInlineEnd(&self) -> DOMString

Source§

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

Source§

fn Inset_inline_start(&self) -> DOMString

Source§

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

Source§

fn InsetInlineStart(&self) -> DOMString

Source§

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

Source§

fn Left(&self) -> DOMString

Source§

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

Source§

fn Right(&self) -> DOMString

Source§

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

Source§

fn Top(&self) -> DOMString

Source§

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

Source§

fn Margin_block_end(&self) -> DOMString

Source§

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

Source§

fn MarginBlockEnd(&self) -> DOMString

Source§

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

Source§

fn Margin_block_start(&self) -> DOMString

Source§

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

Source§

fn MarginBlockStart(&self) -> DOMString

Source§

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

Source§

fn Margin_bottom(&self) -> DOMString

Source§

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

Source§

fn MarginBottom(&self) -> DOMString

Source§

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

Source§

fn Margin_inline_end(&self) -> DOMString

Source§

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

Source§

fn MarginInlineEnd(&self) -> DOMString

Source§

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

Source§

fn Margin_inline_start(&self) -> DOMString

Source§

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

Source§

fn MarginInlineStart(&self) -> DOMString

Source§

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

Source§

fn Margin_left(&self) -> DOMString

Source§

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

Source§

fn MarginLeft(&self) -> DOMString

Source§

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

Source§

fn Margin_right(&self) -> DOMString

Source§

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

Source§

fn MarginRight(&self) -> DOMString

Source§

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

Source§

fn Margin_top(&self) -> DOMString

Source§

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

Source§

fn MarginTop(&self) -> DOMString

Source§

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

Source§

fn Padding_block_end(&self) -> DOMString

Source§

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

Source§

fn PaddingBlockEnd(&self) -> DOMString

Source§

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

Source§

fn Padding_block_start(&self) -> DOMString

Source§

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

Source§

fn PaddingBlockStart(&self) -> DOMString

Source§

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

Source§

fn Padding_bottom(&self) -> DOMString

Source§

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

Source§

fn PaddingBottom(&self) -> DOMString

Source§

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

Source§

fn Padding_inline_end(&self) -> DOMString

Source§

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

Source§

fn PaddingInlineEnd(&self) -> DOMString

Source§

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

Source§

fn Padding_inline_start(&self) -> DOMString

Source§

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

Source§

fn PaddingInlineStart(&self) -> DOMString

Source§

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

Source§

fn Padding_left(&self) -> DOMString

Source§

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

Source§

fn PaddingLeft(&self) -> DOMString

Source§

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

Source§

fn Padding_right(&self) -> DOMString

Source§

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

Source§

fn PaddingRight(&self) -> DOMString

Source§

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

Source§

fn Padding_top(&self) -> DOMString

Source§

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

Source§

fn PaddingTop(&self) -> DOMString

Source§

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

Source§

fn Block_size(&self) -> DOMString

Source§

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

Source§

fn BlockSize(&self) -> DOMString

Source§

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

Source§

fn Height(&self) -> DOMString

Source§

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

Source§

fn Inline_size(&self) -> DOMString

Source§

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

Source§

fn InlineSize(&self) -> DOMString

Source§

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

Source§

fn Min_block_size(&self) -> DOMString

Source§

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

Source§

fn MinBlockSize(&self) -> DOMString

Source§

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

Source§

fn Min_height(&self) -> DOMString

Source§

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

Source§

fn MinHeight(&self) -> DOMString

Source§

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

Source§

fn Min_inline_size(&self) -> DOMString

Source§

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

Source§

fn MinInlineSize(&self) -> DOMString

Source§

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

Source§

fn Min_width(&self) -> DOMString

Source§

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

Source§

fn MinWidth(&self) -> DOMString

Source§

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

Source§

fn Width(&self) -> DOMString

Source§

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

Source§

fn Border_block_end_width(&self) -> DOMString

Source§

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

Source§

fn BorderBlockEndWidth(&self) -> DOMString

Source§

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

Source§

fn Border_block_start_width(&self) -> DOMString

Source§

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

Source§

fn BorderBlockStartWidth(&self) -> DOMString

Source§

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

Source§

fn Border_bottom_width(&self) -> DOMString

Source§

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

Source§

fn BorderBottomWidth(&self) -> DOMString

Source§

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

Source§

fn Border_inline_end_width(&self) -> DOMString

Source§

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

Source§

fn BorderInlineEndWidth(&self) -> DOMString

Source§

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

Source§

fn Border_inline_start_width(&self) -> DOMString

Source§

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

Source§

fn BorderInlineStartWidth(&self) -> DOMString

Source§

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

Source§

fn Border_left_width(&self) -> DOMString

Source§

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

Source§

fn BorderLeftWidth(&self) -> DOMString

Source§

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

Source§

fn Border_right_width(&self) -> DOMString

Source§

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

Source§

fn BorderRightWidth(&self) -> DOMString

Source§

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

Source§

fn Border_top_width(&self) -> DOMString

Source§

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

Source§

fn BorderTopWidth(&self) -> DOMString

Source§

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

Source§

fn Outline_width(&self) -> DOMString

Source§

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

Source§

fn OutlineWidth(&self) -> DOMString

Source§

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

Source§

fn Background_color(&self) -> DOMString

Source§

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

Source§

fn BackgroundColor(&self) -> DOMString

Source§

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

Source§

fn Border_block_end_color(&self) -> DOMString

Source§

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

Source§

fn BorderBlockEndColor(&self) -> DOMString

Source§

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

Source§

fn Border_block_start_color(&self) -> DOMString

Source§

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

Source§

fn BorderBlockStartColor(&self) -> DOMString

Source§

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

Source§

fn Border_bottom_color(&self) -> DOMString

Source§

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

Source§

fn BorderBottomColor(&self) -> DOMString

Source§

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

Source§

fn Border_inline_end_color(&self) -> DOMString

Source§

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

Source§

fn BorderInlineEndColor(&self) -> DOMString

Source§

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

Source§

fn Border_inline_start_color(&self) -> DOMString

Source§

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

Source§

fn BorderInlineStartColor(&self) -> DOMString

Source§

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

Source§

fn Border_left_color(&self) -> DOMString

Source§

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

Source§

fn BorderLeftColor(&self) -> DOMString

Source§

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

Source§

fn Border_right_color(&self) -> DOMString

Source§

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

Source§

fn BorderRightColor(&self) -> DOMString

Source§

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

Source§

fn Border_top_color(&self) -> DOMString

Source§

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

Source§

fn BorderTopColor(&self) -> DOMString

Source§

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

Source§

fn Outline_color(&self) -> DOMString

Source§

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

Source§

fn OutlineColor(&self) -> DOMString

Source§

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

Source§

fn Text_decoration_color(&self) -> DOMString

Source§

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

Source§

fn TextDecorationColor(&self) -> DOMString

Source§

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

Source§

fn Margin(&self) -> DOMString

Source§

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

Source§

fn Margin_block(&self) -> DOMString

Source§

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

Source§

fn MarginBlock(&self) -> DOMString

Source§

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

Source§

fn Margin_inline(&self) -> DOMString

Source§

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

Source§

fn MarginInline(&self) -> DOMString

Source§

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

Source§

fn Padding(&self) -> DOMString

Source§

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

Source§

fn Padding_block(&self) -> DOMString

Source§

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

Source§

fn PaddingBlock(&self) -> DOMString

Source§

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

Source§

fn Padding_inline(&self) -> DOMString

Source§

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

Source§

fn PaddingInline(&self) -> DOMString

Source§

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

Source§

fn Border_color(&self) -> DOMString

Source§

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

Source§

fn BorderColor(&self) -> DOMString

Source§

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

Source§

fn Border_style(&self) -> DOMString

Source§

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

Source§

fn BorderStyle(&self) -> DOMString

Source§

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

Source§

fn Border_width(&self) -> DOMString

Source§

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

Source§

fn BorderWidth(&self) -> DOMString

Source§

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

Source§

fn Border_block_color(&self) -> DOMString

Source§

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

Source§

fn BorderBlockColor(&self) -> DOMString

Source§

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

Source§

fn Border_inline_color(&self) -> DOMString

Source§

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

Source§

fn BorderInlineColor(&self) -> DOMString

Source§

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

Source§

fn Border_block_width(&self) -> DOMString

Source§

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

Source§

fn BorderBlockWidth(&self) -> DOMString

Source§

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

Source§

fn Border_inline_width(&self) -> DOMString

Source§

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

Source§

fn BorderInlineWidth(&self) -> DOMString

Source§

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

Source§

fn Border_block_style(&self) -> DOMString

Source§

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

Source§

fn BorderBlockStyle(&self) -> DOMString

Source§

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

Source§

fn Border_inline_style(&self) -> DOMString

Source§

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

Source§

fn BorderInlineStyle(&self) -> DOMString

Source§

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

Source§

fn Border_top(&self) -> DOMString

Source§

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

Source§

fn BorderTop(&self) -> DOMString

Source§

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

Source§

fn Border_right(&self) -> DOMString

Source§

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

Source§

fn BorderRight(&self) -> DOMString

Source§

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

Source§

fn Border_bottom(&self) -> DOMString

Source§

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

Source§

fn BorderBottom(&self) -> DOMString

Source§

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

Source§

fn Border_left(&self) -> DOMString

Source§

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

Source§

fn BorderLeft(&self) -> DOMString

Source§

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

Source§

fn Border_block_start(&self) -> DOMString

Source§

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

Source§

fn BorderBlockStart(&self) -> DOMString

Source§

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

Source§

fn Border_block_end(&self) -> DOMString

Source§

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

Source§

fn BorderBlockEnd(&self) -> DOMString

Source§

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

Source§

fn Border_inline_start(&self) -> DOMString

Source§

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

Source§

fn BorderInlineStart(&self) -> DOMString

Source§

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

Source§

fn Border_inline_end(&self) -> DOMString

Source§

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

Source§

fn BorderInlineEnd(&self) -> DOMString

Source§

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

Source§

fn Border_block(&self) -> DOMString

Source§

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

Source§

fn BorderBlock(&self) -> DOMString

Source§

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

Source§

fn Border_inline(&self) -> DOMString

Source§

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

Source§

fn BorderInline(&self) -> DOMString

Source§

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

Source§

fn Border_image(&self) -> DOMString

Source§

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

Source§

fn BorderImage(&self) -> DOMString

Source§

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

Source§

fn _moz_border_image(&self) -> DOMString

Source§

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

Source§

fn MozBorderImage(&self) -> DOMString

Source§

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

Source§

fn _webkit_border_image(&self) -> DOMString

Source§

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

Source§

fn WebkitBorderImage(&self) -> DOMString

Source§

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

Source§

fn Border(&self) -> DOMString

Source§

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

Source§

fn Overflow(&self) -> DOMString

Source§

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

Source§

fn Vertical_align(&self) -> DOMString

Source§

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

Source§

fn VerticalAlign(&self) -> DOMString

Source§

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

Source§

fn _webkit_perspective(&self) -> DOMString

Source§

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

Source§

fn WebkitPerspective(&self) -> DOMString

Source§

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

Source§

fn _webkit_transform(&self) -> DOMString

Source§

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

Source§

fn WebkitTransform(&self) -> DOMString

Source§

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

Source§

fn Background(&self) -> DOMString

Source§

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

Source§

fn Inset(&self) -> DOMString

Source§

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

Source§

fn Inset_block(&self) -> DOMString

Source§

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

Source§

fn InsetBlock(&self) -> DOMString

Source§

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

Source§

fn Inset_inline(&self) -> DOMString

Source§

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

Source§

fn InsetInline(&self) -> DOMString

Source§

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

Source§

fn Flex_flow(&self) -> DOMString

Source§

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

Source§

fn FlexFlow(&self) -> DOMString

Source§

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

Source§

fn _webkit_flex_flow(&self) -> DOMString

Source§

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

Source§

fn WebkitFlexFlow(&self) -> DOMString

Source§

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

Source§

fn Flex(&self) -> DOMString

Source§

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

Source§

fn _webkit_flex(&self) -> DOMString

Source§

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

Source§

fn WebkitFlex(&self) -> DOMString

Source§

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

Source§

fn Gap(&self) -> DOMString

Source§

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

Source§

fn Grid_gap(&self) -> DOMString

Source§

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

Source§

fn GridGap(&self) -> DOMString

Source§

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

Source§

fn Grid_row(&self) -> DOMString

Source§

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

Source§

fn GridRow(&self) -> DOMString

Source§

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

Source§

fn Grid_column(&self) -> DOMString

Source§

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

Source§

fn GridColumn(&self) -> DOMString

Source§

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

Source§

fn Grid_area(&self) -> DOMString

Source§

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

Source§

fn GridArea(&self) -> DOMString

Source§

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

Source§

fn Grid_template(&self) -> DOMString

Source§

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

Source§

fn GridTemplate(&self) -> DOMString

Source§

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

Source§

fn Grid(&self) -> DOMString

Source§

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

Source§

fn Place_content(&self) -> DOMString

Source§

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

Source§

fn PlaceContent(&self) -> DOMString

Source§

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

Source§

fn Place_self(&self) -> DOMString

Source§

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

Source§

fn PlaceSelf(&self) -> DOMString

Source§

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

Source§

fn Place_items(&self) -> DOMString

Source§

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

Source§

fn PlaceItems(&self) -> DOMString

Source§

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

Source§

fn Transition(&self) -> DOMString

Source§

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

Source§

fn _moz_transition(&self) -> DOMString

Source§

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

Source§

fn MozTransition(&self) -> DOMString

Source§

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

Source§

fn _webkit_transition(&self) -> DOMString

Source§

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

Source§

fn WebkitTransition(&self) -> DOMString

Source§

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

Source§

fn Animation(&self) -> DOMString

Source§

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

Source§

fn _moz_animation(&self) -> DOMString

Source§

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

Source§

fn MozAnimation(&self) -> DOMString

Source§

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

Source§

fn _webkit_animation(&self) -> DOMString

Source§

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

Source§

fn WebkitAnimation(&self) -> DOMString

Source§

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

Source§

fn List_style(&self) -> DOMString

Source§

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

Source§

fn ListStyle(&self) -> DOMString

Source§

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

Source§

fn Background_position(&self) -> DOMString

Source§

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

Source§

fn BackgroundPosition(&self) -> DOMString

Source§

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

Source§

fn Border_radius(&self) -> DOMString

Source§

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

Source§

fn BorderRadius(&self) -> DOMString

Source§

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

Source§

fn _webkit_border_radius(&self) -> DOMString

Source§

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

Source§

fn WebkitBorderRadius(&self) -> DOMString

Source§

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

Source§

fn Outline(&self) -> DOMString

Source§

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

Source§

fn Columns(&self) -> DOMString

Source§

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

Source§

fn Text_decoration(&self) -> DOMString

Source§

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

Source§

fn TextDecoration(&self) -> DOMString

Source§

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

Source§

fn Font(&self) -> DOMString

Source§

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

Source§

fn Font_variant(&self) -> DOMString

Source§

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

Source§

fn FontVariant(&self) -> DOMString

Source§

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

Source§

fn White_space(&self) -> DOMString

Source§

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

Source§

fn WhiteSpace(&self) -> DOMString

Source§

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

Source§

fn All(&self) -> DOMString

Source§

fn SetAll(&self, cx: &mut JSContext, 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, cx: &mut JSContext) -> 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, cx: &mut JSContext, text: DOMString, ) -> 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, cx: &mut JSContext, x0: Finite<f64>, y0: Finite<f64>, x1: Finite<f64>, y1: Finite<f64>, ) -> DomRoot<CanvasGradient>

Source§

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

Source§

fn CreatePattern( &self, cx: &mut JSContext, image: CanvasImageSource<DomTypeHolder>, repetition: DOMString, ) -> 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, cx: &mut JSContext, nodes: Vec<NodeOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn After( &self, cx: &mut JSContext, nodes: Vec<NodeOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn ReplaceWith( &self, cx: &mut JSContext, nodes: Vec<NodeOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn Remove(&self, cx: &mut JSContext)

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, cx: &mut JSContext, point: &DOMPointInit, ) -> 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: &mut JSContext, 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, cx: &mut JSContext) -> DomRoot<FileList>

Source§

impl DebuggerAddDebuggeeEventMethods<DomTypeHolder> for DebuggerAddDebuggeeEvent

Source§

impl DebuggerClearBreakpointEventMethods<DomTypeHolder> for DebuggerClearBreakpointEvent

Source§

fn SpidermonkeyId(&self) -> u32

Source§

fn ScriptId(&self) -> u32

Source§

fn Offset(&self) -> u32

Source§

fn IsTrusted(&self) -> bool

Source§

impl DebuggerEvalEventMethods<DomTypeHolder> for DebuggerEvalEvent

Source§

impl DebuggerFrameEventMethods<DomTypeHolder> for DebuggerFrameEvent

Source§

impl DebuggerGetEnvironmentEventMethods<DomTypeHolder> for DebuggerGetEnvironmentEvent

Source§

impl DebuggerGetPossibleBreakpointsEventMethods<DomTypeHolder> for DebuggerGetPossibleBreakpointsEvent

Source§

impl DebuggerGlobalScopeMethods<DomTypeHolder> for DebuggerGlobalScope

Source§

fn EvalResult(&self, _event: &DebuggerEvalEvent, result: &EvalResult)

Handle the result from debugger.js executeInGlobal() call.

The result contains completion value information from the SpiderMonkey Debugger API: https://firefox-source-docs.mozilla.org/js/Debugger/Conventions.html#completion-values

Source§

fn NotifyNewSource(&self, args: &NotifyNewSource)

Source§

fn GetPossibleBreakpointsResult( &self, event: &DebuggerGetPossibleBreakpointsEvent, result: Vec<RecommendedBreakpointLocation>, )

Source§

fn PauseAndRespond( &self, pipeline_id: &PipelineIdInit, frame_offset: &FrameOffset, pause_reason: &PauseReason, )

Source§

fn RegisterFrameActor( &self, pipeline_id: &PipelineIdInit, result: &FrameInfo, ) -> Option<DOMString>

Source§

fn ListFramesResult(&self, frame_actor_ids: Vec<DOMString>)

Source§

fn RegisterEnvironmentActor( &self, environment: &EnvironmentInfo, parent: Option<DOMString>, actor: Option<DOMString>, ) -> Option<DOMString>

Source§

fn GetEnvironmentResult(&self, environment_actor_id: DOMString)

Source§

impl DebuggerInterruptEventMethods<DomTypeHolder> for DebuggerInterruptEvent

Source§

fn IsTrusted(&self) -> bool

Source§

impl DebuggerResumeEventMethods<DomTypeHolder> for DebuggerResumeEvent

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: &mut JSContext, message: HandleValue<'_>, target_origin: USVString, transfer: CustomAutoRooterGuard<'_, Vec<*mut JSObject>>, ) -> ErrorResult

Source§

fn PostMessage_( &self, cx: &mut JSContext, message: HandleValue<'_>, options: RootedTraceableBox<WindowPostMessageOptions>, ) -> ErrorResult

Source§

fn Opener(&self, _: &mut JSContext, retval: MutableHandleValue<'_>)

Source§

fn SetOpener(&self, _: &mut 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( cx: &mut JSContext, window: &Window, proto: Option<HandleObject<'_>>, ) -> Fallible<DomRoot<DocumentFragment>>

Source§

fn Children(&self, cx: &mut JSContext) -> 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, cx: &mut JSContext, nodes: Vec<NodeOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn Append( &self, cx: &mut JSContext, nodes: Vec<NodeOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn ReplaceChildren( &self, cx: &mut JSContext, nodes: Vec<NodeOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn MoveBefore( &self, cx: &mut JSContext, node: &Node, child: Option<&Node>, ) -> 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( cx: &mut JSContext, window: &Window, s: TrustedHTMLOrString<DomTypeHolder>, ) -> Fallible<DomRoot<Self>>

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, cx: &mut JSContext, qualified_name: DOMString, ) -> DomRoot<HTMLCollection>

Source§

fn GetElementsByTagNameNS( &self, cx: &mut JSContext, maybe_ns: Option<DOMString>, tag_name: DOMString, ) -> DomRoot<HTMLCollection>

Source§

fn GetElementsByClassName( &self, cx: &mut JSContext, classes: DOMString, ) -> DomRoot<HTMLCollection>

Source§

fn GetElementById(&self, id: DOMString) -> Option<DomRoot<Element>>

Source§

fn CreateElement( &self, cx: &mut JSContext, local_name: DOMString, options: StringOrElementCreationOptions, ) -> Fallible<DomRoot<Element>>

Source§

fn CreateElementNS( &self, cx: &mut JSContext, namespace: Option<DOMString>, qualified_name: DOMString, options: StringOrElementCreationOptions, ) -> Fallible<DomRoot<Element>>

Source§

fn CreateAttribute( &self, cx: &mut JSContext, local_name: DOMString, ) -> Fallible<DomRoot<Attr>>

Source§

fn CreateAttributeNS( &self, cx: &mut JSContext, namespace: Option<DOMString>, qualified_name: DOMString, ) -> Fallible<DomRoot<Attr>>

Source§

fn CreateDocumentFragment( &self, cx: &mut JSContext, ) -> DomRoot<DocumentFragment>

Source§

fn CreateTextNode(&self, cx: &mut JSContext, data: DOMString) -> DomRoot<Text>

Source§

fn CreateCDATASection( &self, cx: &mut JSContext, data: DOMString, ) -> Fallible<DomRoot<CDATASection>>

Source§

fn CreateComment(&self, cx: &mut JSContext, data: DOMString) -> DomRoot<Comment>

Source§

fn CreateProcessingInstruction( &self, cx: &mut JSContext, target: DOMString, data: DOMString, ) -> Fallible<DomRoot<ProcessingInstruction>>

Source§

fn ImportNode( &self, cx: &mut JSContext, node: &Node, options: BooleanOrImportNodeOptions<DomTypeHolder>, ) -> Fallible<DomRoot<Node>>

Source§

fn AdoptNode(&self, cx: &mut JSContext, node: &Node) -> Fallible<DomRoot<Node>>

Source§

fn CreateEvent( &self, cx: &mut JSContext, interface: DOMString, ) -> 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, cx: &mut JSContext, title: DOMString)

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, cx: &mut JSContext, new_body: Option<&HTMLElement>, ) -> ErrorResult

Source§

fn GetElementsByName(&self, name: DOMString, can_gc: CanGc) -> DomRoot<NodeList>

Source§

fn Images(&self, cx: &mut JSContext) -> DomRoot<HTMLCollection>

Source§

fn Embeds(&self, cx: &mut JSContext) -> DomRoot<HTMLCollection>

Source§

fn Plugins(&self, cx: &mut JSContext) -> DomRoot<HTMLCollection>

Source§

fn Forms(&self, cx: &mut JSContext) -> DomRoot<HTMLCollection>

Source§

fn Scripts(&self, cx: &mut JSContext) -> DomRoot<HTMLCollection>

Source§

fn Anchors(&self, cx: &mut JSContext) -> DomRoot<HTMLCollection>

Source§

fn Applets(&self, cx: &mut JSContext) -> DomRoot<HTMLCollection>

Source§

fn GetLocation(&self, cx: &mut JSContext) -> Option<DomRoot<Location>>

Source§

fn Children(&self, cx: &mut JSContext) -> 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, cx: &mut JSContext, nodes: Vec<NodeOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn Append( &self, cx: &mut JSContext, nodes: Vec<NodeOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn ReplaceChildren( &self, cx: &mut JSContext, nodes: Vec<NodeOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn MoveBefore( &self, cx: &mut JSContext, node: &Node, child: Option<&Node>, ) -> 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, cx: &mut JSContext, value: DOMString)

Source§

fn FgColor(&self) -> DOMString

Source§

fn SetFgColor(&self, cx: &mut JSContext, value: DOMString)

Source§

fn NamedGetter( &self, cx: &mut JSContext, name: DOMString, ) -> 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, cx: &mut JSContext, _unused1: Option<DOMString>, _unused2: Option<DOMString>, ) -> Fallible<DomRoot<Document>>

Source§

fn Open_( &self, cx: &mut JSContext, url: USVString, target: DOMString, features: DOMString, ) -> Fallible<Option<DomRoot<WindowProxy>>>

Source§

fn Write( &self, cx: &mut JSContext, text: Vec<TrustedHTMLOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn Writeln( &self, cx: &mut JSContext, text: Vec<TrustedHTMLOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn Close(&self, cx: &mut JSContext) -> ErrorResult

Source§

fn ExecCommand( &self, cx: &mut JSContext, command_id: DOMString, _show_ui: bool, value: TrustedHTMLOrString<DomTypeHolder>, ) -> Fallible<bool>

Source§

fn QueryCommandEnabled(&self, cx: &mut JSContext, command_id: DOMString) -> bool

Source§

fn QueryCommandSupported(&self, command_id: DOMString) -> bool

Source§

fn QueryCommandIndeterm( &self, cx: &mut JSContext, command_id: DOMString, ) -> bool

Source§

fn QueryCommandState(&self, cx: &mut JSContext, command_id: DOMString) -> bool

Source§

fn QueryCommandValue( &self, cx: &mut JSContext, command_id: DOMString, ) -> DOMString

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, cx: &mut JSContext) -> Option<DomRoot<Selection>>

Source§

fn Fonts(&self, cx: &mut JSContext) -> 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, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnblur( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnerror( &self, cx: &mut JSContext, ) -> Option<Rc<OnErrorEventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnerror( &self, cx: &mut JSContext, listener: Option<Rc<OnErrorEventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnfocus( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnfocus( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnload( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnload( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnresize( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnresize( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnscroll( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnscroll( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnabort( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnabort( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnauxclick( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnauxclick( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnanimationstart( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnanimationstart( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnanimationiteration( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnanimationiteration( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnanimationend( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnanimationend( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnanimationcancel( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnanimationcancel( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnbeforeinput( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnbeforeinput( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnbeforematch( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnbeforematch( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnbeforetoggle( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnbeforetoggle( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncancel( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncancel( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncanplay( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncanplay( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncanplaythrough( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncanplaythrough( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnchange( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnchange( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnclick( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnclick( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnclose( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnclose( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncommand( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncommand( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncontextlost( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncontextlost( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncontextmenu( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncontextmenu( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncontextrestored( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncontextrestored( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncopy( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncopy( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncuechange( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncuechange( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncut( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncut( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndblclick( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndblclick( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndrag( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndrag( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndragend( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragend( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndragenter( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragenter( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndragleave( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragleave( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndragover( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragover( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndragstart( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragstart( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndrop( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndrop( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndurationchange( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndurationchange( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnemptied( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnemptied( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnended( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnended( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnformdata( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnformdata( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOninput( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOninput( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOninvalid( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOninvalid( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnkeydown( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnkeydown( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnkeypress( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnkeypress( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnkeyup( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnkeyup( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnloadeddata( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnloadeddata( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnloadedmetadata( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnloadedmetadata( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnloadstart( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnloadstart( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmousedown( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmousedown( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmouseenter( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmouseenter( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmouseleave( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmouseleave( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmousemove( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmousemove( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmouseout( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmouseout( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmouseover( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmouseover( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmouseup( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmouseup( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpaste( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpaste( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpause( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpause( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnplay( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnplay( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnplaying( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnplaying( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpointercancel( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpointercancel( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpointerdown( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpointerdown( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpointerenter( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpointerenter( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpointerleave( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpointerleave( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpointermove( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpointermove( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpointerout( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpointerout( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpointerover( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpointerover( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpointerup( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpointerup( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnprogress( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnprogress( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnratechange( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnratechange( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnreset( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnreset( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnscrollend( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnscrollend( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnsecuritypolicyviolation( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnsecuritypolicyviolation( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnseeked( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnseeked( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnseeking( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnseeking( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnselect( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnselect( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnselectionchange( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnselectionchange( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnselectstart( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnselectstart( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnslotchange( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnslotchange( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnstalled( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnstalled( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnsubmit( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnsubmit( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnsuspend( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnsuspend( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOntimeupdate( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOntimeupdate( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOntoggle( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOntoggle( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOntransitioncancel( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOntransitioncancel( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOntransitionend( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOntransitionend( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOntransitionrun( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOntransitionrun( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnvolumechange( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnvolumechange( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnwaiting( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnwaiting( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnwebkitanimationend( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnwebkitanimationend( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnwebkitanimationiteration( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnwebkitanimationiteration( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnwebkitanimationstart( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnwebkitanimationstart( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnwebkittransitionend( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnwebkittransitionend( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnwheel( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnwheel( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnreadystatechange( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnreadystatechange( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnfullscreenerror( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnfullscreenerror( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnfullscreenchange( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnfullscreenchange( &self, cx: &mut JSContext, 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§

fn Timeline(&self) -> DomRoot<DocumentTimeline>

Source§

impl DocumentTimelineMethods<DomTypeHolder> for DocumentTimeline

Source§

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

Source§

impl DocumentTypeMethods<DomTypeHolder> for DocumentType

Source§

impl DomHelpers<DomTypeHolder> for DomTypeHolder

Source§

impl DomObjectIteratorWrap<DomTypeHolder> for CustomStateSet

Source§

const ITER_WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>>

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for FontFaceSet

Source§

const ITER_WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>>

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for FormData

Source§

const ITER_WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>>

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for GPUSupportedFeatures

Source§

const ITER_WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>>

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for Headers

Source§

const ITER_WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>>

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for TestBindingMaplikeWithInterface

Source§

const ITER_WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>>

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for TestBindingMaplikeWithPrimitive

Source§

const ITER_WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>>

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for TestBindingPairIterable

Source§

const ITER_WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>>

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for TestBindingSetlikeWithInterface

Source§

const ITER_WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>>

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for TestBindingSetlikeWithPrimitive

Source§

const ITER_WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>>

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for URLSearchParams

Source§

const ITER_WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>>

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for WGSLLanguageFeatures

Source§

const ITER_WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>>

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectIteratorWrap<DomTypeHolder> for XRHand

Source§

const ITER_WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<IterableIterator<DomTypeHolder, Self>>) -> Root<Dom<IterableIterator<DomTypeHolder, Self>>>

Function pointer to the wrap function for IterableIterator<T>
Source§

impl DomObjectWrap<DomTypeHolder> for ANGLEInstancedArrays

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AbortController

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AbortSignal

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AbstractRange

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AnalyserNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AnimationEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AnimationTimeline

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Attr

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioBuffer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioBufferSourceNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioContext

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioDestinationNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioListener

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioParam

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioScheduledSourceNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioTrack

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for AudioTrackList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BaseAudioContext

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BeforeUnloadEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BiquadFilterNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Blob

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Bluetooth

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothAdvertisingEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothCharacteristicProperties

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothDevice

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothPermissionResult

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothRemoteGATTCharacteristic

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothRemoteGATTDescriptor

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothRemoteGATTServer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothRemoteGATTService

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BluetoothUUID

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for BroadcastChannel

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ByteLengthQueuingStrategy

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ByteTeeReadIntoRequest

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ByteTeeReadRequest

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ByteTeeUnderlyingSource

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CDATASection

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSFontFaceRule

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSImportRule

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSKeyframeRule

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSKeyframesRule

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSLayerBlockRule

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSLayerStatementRule

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSMediaRule

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSNamespaceRule

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSNestedDeclarations

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSPropertyRule

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSRuleList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSStyleDeclaration

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSStyleRule

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSStyleSheet

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSStyleValue

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CSSSupportsRule

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CanvasGradient

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CanvasPattern

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CanvasRenderingContext2D

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ChannelMergerNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ChannelSplitterNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Client

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Clipboard

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ClipboardEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ClipboardItem

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CloseEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CommandEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Comment

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CompositionEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CompressionStream

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ConstantSourceNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CookieStore

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CountQueuingStrategy

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Credential

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CredentialsContainer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Crypto

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CryptoKey

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CustomElementRegistry

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CustomEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for CustomStateSet

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMException

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMImplementation

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMMatrix

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMMatrixReadOnly

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMParser

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMPoint

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMPointReadOnly

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMQuad

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMRect

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMRectList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMRectReadOnly

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMStringList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMStringMap

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DOMTokenList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DataTransfer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DataTransferItem

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DataTransferItemList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DebuggerAddDebuggeeEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DebuggerClearBreakpointEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DebuggerEvalEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DebuggerFrameEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DebuggerGetEnvironmentEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DebuggerGetPossibleBreakpointsEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DebuggerInterruptEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DebuggerResumeEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DebuggerSetBreakpointEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DecompressionStream

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DefaultTeeReadRequest

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DefaultTeeUnderlyingSource

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DissimilarOriginLocation

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Document

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DocumentFragment

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DocumentTimeline

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for DocumentType

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for EXTBlendMinmax

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for EXTColorBufferHalfFloat

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for EXTFragDepth

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for EXTShaderTextureLod

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for EXTTextureFilterAnisotropic

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Element

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ElementInternals

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ErrorEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Event

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for EventSource

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for EventTarget

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ExtendableEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ExtendableMessageEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FakeXRDevice

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FakeXRInputController

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FetchLaterResult

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for File

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FileList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FileReader

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FileReaderSync

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FocusEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FontFace

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FontFaceSet

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FormData

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for FormDataEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPU

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUAdapter

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUAdapterInfo

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUBindGroup

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUBindGroupLayout

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUBuffer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUCanvasContext

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUColorWrite

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUCommandBuffer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUCommandEncoder

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUCompilationInfo

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUCompilationMessage

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUComputePassEncoder

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUComputePipeline

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUDevice

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUDeviceLostInfo

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUError

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUInternalError

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUOutOfMemoryError

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUPipelineError

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUPipelineLayout

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUQuerySet

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUQueue

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPURenderBundle

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPURenderBundleEncoder

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPURenderPassEncoder

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPURenderPipeline

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUSampler

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUShaderModule

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUShaderStage

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUSupportedFeatures

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUSupportedLimits

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUTexture

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUTextureUsage

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUTextureView

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUUncapturedErrorEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GPUValidationError

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GainNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Gamepad

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GamepadButton

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GamepadEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GamepadHapticActuator

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GamepadPose

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Geolocation

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GeolocationCoordinates

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GeolocationPosition

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for GeolocationPositionError

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLAnchorElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLAreaElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLAudioElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLBRElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLBaseElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLBodyElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLButtonElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLCanvasElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLCollection

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLDListElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLDataElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLDataListElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLDetailsElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLDialogElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLDirectoryElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLDivElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLDocument

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLEmbedElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLFieldSetElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLFontElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLFormControlsCollection

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLFormElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLFrameElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLFrameSetElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLHRElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLHeadElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLHeadingElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLHtmlElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLIFrameElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLImageElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLInputElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLLIElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLLabelElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLLegendElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLLinkElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLMapElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLMarqueeElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLMenuElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLMetaElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLMeterElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLModElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLOListElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLObjectElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLOptGroupElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLOptionElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLOptionsCollection

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLOutputElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLParagraphElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLParamElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLPictureElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLPreElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLProgressElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLQuoteElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLScriptElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLSelectElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLSlotElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLSourceElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLSpanElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLStyleElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTableCaptionElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTableCellElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTableColElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTableElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTableRowElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTableSectionElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTemplateElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTextAreaElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTimeElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTitleElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLTrackElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLUListElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLUnknownElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HTMLVideoElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for HashChangeEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Headers

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for History

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBCursor

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBCursorWithValue

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBDatabase

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBFactory

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBIndex

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBKeyRange

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBObjectStore

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBOpenDBRequest

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBRequest

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBTransaction

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IDBVersionChangeEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IIRFilterNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ImageBitmap

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ImageBitmapRenderingContext

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ImageData

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for InputEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IntersectionObserver

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for IntersectionObserverEntry

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for KeyboardEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for LargestContentfulPaint

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for LayoutResult

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Location

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaDeviceInfo

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaDevices

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaElementAudioSourceNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaError

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaMetadata

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaQueryList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaQueryListEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaSession

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaStream

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaStreamAudioDestinationNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaStreamAudioSourceNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaStreamTrack

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MediaStreamTrackAudioSourceNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MessageChannel

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MessageEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MessagePort

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MimeType

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MimeTypeArray

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MouseEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MutationObserver

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for MutationRecord

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for NamedNodeMap

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for NavigationPreloadManager

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Navigator

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for NodeIterator

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for NodeList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Notification

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OESElementIndexUint

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OESStandardDerivatives

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OESTextureFloat

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OESTextureFloatLinear

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OESTextureHalfFloat

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OESTextureHalfFloatLinear

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OESVertexArrayObject

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OfflineAudioCompletionEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OfflineAudioContext

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OffscreenCanvas

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OffscreenCanvasRenderingContext2D

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Origin

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for OscillatorNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PageTransitionEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PaintRenderingContext2D

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PaintSize

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PannerNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PasswordCredential

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Path2D

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Performance

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformanceEntry

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformanceMark

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformanceMeasure

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformanceNavigation

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformanceNavigationTiming

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformanceObserver

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformanceObserverEntryList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformancePaintTiming

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PerformanceResourceTiming

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PermissionStatus

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Permissions

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PipelineId

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Plugin

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PluginArray

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PointerEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PopStateEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ProcessingInstruction

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ProgressEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PromiseNativeHandler

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for PromiseRejectionEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for QuotaExceededError

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCDataChannel

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCDataChannelEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCError

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCErrorEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCIceCandidate

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCPeerConnection

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCPeerConnectionIceEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCRtpSender

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCRtpTransceiver

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCSessionDescription

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RTCTrackEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for RadioNodeList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Range

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ReadableByteStreamController

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ReadableStream

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ReadableStreamBYOBReader

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ReadableStreamBYOBRequest

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ReadableStreamDefaultController

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ReadableStreamDefaultReader

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ReportingObserver

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Request

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ResizeObserver

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ResizeObserverEntry

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ResizeObserverSize

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Response

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for SVGElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for SVGImageElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for SVGSVGElement

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Sanitizer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Screen

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for SecurityPolicyViolationEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Selection

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ServiceWorker

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ServiceWorkerContainer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ServiceWorkerRegistration

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ServoInternals

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ServoParser

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ShadowRoot

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for SharedWorker

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for StaticRange

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for StereoPannerNode

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Storage

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for StorageEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for StorageManager

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for StylePropertyMapReadOnly

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for StyleSheet

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for StyleSheetList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for SubmitEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for SubtleCrypto

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestBinding

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestBindingIterable

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestBindingMaplikeWithInterface

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestBindingMaplikeWithPrimitive

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestBindingPairIterable

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestBindingProxy

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestBindingSetlikeWithInterface

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestBindingSetlikeWithPrimitive

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestRunner

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TestWorklet

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Text

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextDecoder

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextDecoderStream

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextEncoder

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextEncoderStream

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextMetrics

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextTrack

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextTrackCue

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextTrackCueList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TextTrackList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TimeRanges

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ToggleEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Touch

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TouchEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TouchList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TrackEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TransformStream

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TransformStreamDefaultController

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TransitionEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TreeWalker

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TrustedHTML

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TrustedScript

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TrustedScriptURL

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TrustedTypePolicy

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for TrustedTypePolicyFactory

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for UIEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for URL

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for URLPattern

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for URLSearchParams

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for UnderlyingSourceContainer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for UserActivation

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for VTTCue

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for VTTRegion

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for ValidityState

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for VideoTrack

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for VideoTrackList

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for VisibilityStateEntry

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for VisualViewport

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WEBGLColorBufferFloat

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WEBGLCompressedTextureETC1

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WEBGLCompressedTextureS3TC

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WGSLLanguageFeatures

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WakeLock

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WakeLockSentinel

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGL2RenderingContext

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLActiveInfo

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLBuffer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLContextEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLFramebuffer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLProgram

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLQuery

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLRenderbuffer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLRenderingContext

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLSampler

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLShader

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLShaderPrecisionFormat

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLSync

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLTexture

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLTransformFeedback

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLUniformLocation

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLVertexArrayObject

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebGLVertexArrayObjectOES

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WebSocket

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WheelEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Worker

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WorkerLocation

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WorkerNavigator

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for Worklet

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WorkletGlobalScope

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WritableStream

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WritableStreamDefaultController

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for WritableStreamDefaultWriter

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XMLDocument

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XMLHttpRequest

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XMLHttpRequestUpload

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XMLSerializer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XPathEvaluator

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XPathExpression

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XPathResult

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRBoundedReferenceSpace

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRCompositionLayer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRCubeLayer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRCylinderLayer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XREquirectLayer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRFrame

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRHand

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRHitTestResult

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRHitTestSource

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRInputSource

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRInputSourceArray

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRInputSourceEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRInputSourcesChangeEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRJointPose

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRJointSpace

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRLayer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRLayerEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRMediaBinding

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRPose

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRProjectionLayer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRQuadLayer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRRay

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRReferenceSpace

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRReferenceSpaceEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRRenderState

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRRigidTransform

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRSession

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRSessionEvent

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRSpace

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRSubImage

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRSystem

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRTest

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRView

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRViewerPose

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRViewport

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRWebGLBinding

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRWebGLLayer

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

Function pointer to the general wrap function type
Source§

impl DomObjectWrap<DomTypeHolder> for XRWebGLSubImage

Source§

const WRAP: unsafe fn(&mut JSContext, &GlobalScope, Option<HandleObject<'_>>, Box<Self>) -> Root<Dom<Self>>

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 AnimationTimeline = AnimationTimeline

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 CSSPropertyRule = CSSPropertyRule

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 DebuggerClearBreakpointEvent = DebuggerClearBreakpointEvent

Source§

type DebuggerEvalEvent = DebuggerEvalEvent

Source§

type DebuggerFrameEvent = DebuggerFrameEvent

Source§

type DebuggerGetEnvironmentEvent = DebuggerGetEnvironmentEvent

Source§

type DebuggerGetPossibleBreakpointsEvent = DebuggerGetPossibleBreakpointsEvent

Source§

type DebuggerGlobalScope = DebuggerGlobalScope

Source§

type DebuggerInterruptEvent = DebuggerInterruptEvent

Source§

type DebuggerResumeEvent = DebuggerResumeEvent

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 DocumentTimeline = DocumentTimeline

Source§

type DocumentType = DocumentType

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 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 HTMLMarqueeElement = HTMLMarqueeElement

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 LayoutResult = LayoutResult

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 Sanitizer = Sanitizer

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 ServoTestUtils = ServoTestUtils

Source§

type ShadowRoot = ShadowRoot

Source§

type SharedWorker = SharedWorker

Source§

type SharedWorkerGlobalScope = SharedWorkerGlobalScope

Source§

type StaticRange = StaticRange

Source§

type StereoPannerNode = StereoPannerNode

Source§

type Storage = Storage

Source§

type StorageEvent = StorageEvent

Source§

type StorageManager = StorageManager

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 UserActivation = UserActivation

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 WakeLock = WakeLock

Source§

type WakeLockSentinel = WakeLockSentinel

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 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, cx: &mut JSContext) -> Fallible<bool>

Source§

fn ReportValidity(&self, cx: &mut JSContext) -> 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, cx: &mut JSContext, id: DOMString)

Source§

fn ClassName(&self) -> DOMString

Source§

fn SetClassName(&self, cx: &mut JSContext, class: DOMString)

Source§

fn ClassList(&self, cx: &mut JSContext) -> 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, cx: &mut JSContext, name: DOMString, force: Option<bool>, ) -> Fallible<bool>

Source§

fn SetAttribute( &self, cx: &mut JSContext, name: DOMString, value: TrustedHTMLOrTrustedScriptOrTrustedScriptURLOrString<DomTypeHolder>, ) -> ErrorResult

Source§

fn SetAttributeNS( &self, cx: &mut JSContext, namespace: Option<DOMString>, qualified_name: DOMString, value: TrustedHTMLOrTrustedScriptOrTrustedScriptURLOrString<DomTypeHolder>, ) -> ErrorResult

Source§

fn SetAttributeNode( &self, cx: &mut JSContext, attr: &Attr, ) -> Fallible<Option<DomRoot<Attr>>>

Source§

fn SetAttributeNodeNS( &self, cx: &mut JSContext, attr: &Attr, ) -> Fallible<Option<DomRoot<Attr>>>

Source§

fn RemoveAttribute(&self, cx: &mut JSContext, name: DOMString)

Source§

fn RemoveAttributeNS( &self, cx: &mut JSContext, namespace: Option<DOMString>, local_name: DOMString, )

Source§

fn RemoveAttributeNode( &self, cx: &mut JSContext, attr: &Attr, ) -> 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, cx: &mut JSContext, localname: DOMString, ) -> DomRoot<HTMLCollection>

Source§

fn GetElementsByTagNameNS( &self, cx: &mut JSContext, maybe_ns: Option<DOMString>, localname: DOMString, ) -> DomRoot<HTMLCollection>

Source§

fn GetElementsByClassName( &self, cx: &mut JSContext, classes: DOMString, ) -> DomRoot<HTMLCollection>

Source§

fn GetClientRects(&self, cx: &mut JSContext) -> DomRoot<DOMRectList>

Source§

fn GetBoundingClientRect(&self, cx: &mut JSContext) -> 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, _cx: &mut JSContext, 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, cx: &mut JSContext, html: TrustedHTMLOrString<DomTypeHolder>, ) -> ErrorResult

Source§

fn GetHTML( &self, cx: &mut JSContext, options: &GetHTMLOptions<DomTypeHolder>, ) -> DOMString

Source§

fn GetInnerHTML( &self, cx: &mut JSContext, ) -> Fallible<TrustedHTMLOrNullIsEmptyString<DomTypeHolder>>

Source§

fn SetInnerHTML( &self, cx: &mut JSContext, value: TrustedHTMLOrNullIsEmptyString<DomTypeHolder>, ) -> ErrorResult

Source§

fn GetOuterHTML( &self, cx: &mut JSContext, ) -> Fallible<TrustedHTMLOrNullIsEmptyString<DomTypeHolder>>

Source§

fn SetOuterHTML( &self, cx: &mut JSContext, value: TrustedHTMLOrNullIsEmptyString<DomTypeHolder>, ) -> ErrorResult

Source§

fn GetPreviousElementSibling(&self) -> Option<DomRoot<Element>>

Source§

fn GetNextElementSibling(&self) -> Option<DomRoot<Element>>

Source§

fn Children(&self, cx: &mut JSContext) -> 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, cx: &mut JSContext, nodes: Vec<NodeOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn Append( &self, cx: &mut JSContext, nodes: Vec<NodeOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn ReplaceChildren( &self, cx: &mut JSContext, nodes: Vec<NodeOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn MoveBefore( &self, cx: &mut JSContext, node: &Node, child: Option<&Node>, ) -> ErrorResult

Source§

fn QuerySelector( &self, selectors: DOMString, ) -> Fallible<Option<DomRoot<Element>>>

Source§

fn QuerySelectorAll(&self, selectors: DOMString) -> Fallible<DomRoot<NodeList>>

Source§

fn Before( &self, cx: &mut JSContext, nodes: Vec<NodeOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn After( &self, cx: &mut JSContext, nodes: Vec<NodeOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn ReplaceWith( &self, cx: &mut JSContext, nodes: Vec<NodeOrString<DomTypeHolder>>, ) -> ErrorResult

Source§

fn Remove(&self, cx: &mut JSContext)

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, cx: &mut JSContext, where_: DOMString, element: &Element, ) -> Fallible<Option<DomRoot<Element>>>

Source§

fn InsertAdjacentText( &self, cx: &mut JSContext, where_: DOMString, data: DOMString, ) -> ErrorResult

Source§

fn InsertAdjacentHTML( &self, cx: &mut JSContext, position: DOMString, text: TrustedHTMLOrString<DomTypeHolder>, ) -> ErrorResult

Source§

fn RequestFullscreen(&self, can_gc: CanGc) -> Rc<Promise>

Source§

fn AttachShadow( &self, cx: &mut JSContext, init: &ShadowRootInit, ) -> Fallible<DomRoot<ShadowRoot>>

Source§

fn GetShadowRoot(&self) -> Option<DomRoot<ShadowRoot>>

Source§

fn GetCustomElementRegistry(&self) -> Option<DomRoot<CustomElementRegistry>>

Source§

fn GetRole(&self) -> Option<DOMString>

Source§

fn SetRole(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAssignedSlot(&self) -> Option<DomRoot<HTMLSlotElement>>

Source§

fn Part(&self, cx: &mut JSContext) -> DomRoot<DOMTokenList>

Source§

fn Id(&self) -> DOMString

Source§

fn Slot(&self) -> DOMString

Source§

fn SetSlot(&self, cx: &mut JSContext, value: DOMString)

Source§

fn SetScrollTop(&self, _cx: &mut JSContext, y_: f64)

Source§

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

Source§

fn EnterFormalActivationState(&self) -> ErrorResult

Source§

fn ExitFormalActivationState(&self) -> ErrorResult

Source§

fn GetAriaAtomic(&self) -> Option<DOMString>

Source§

fn SetAriaAtomic(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaAutoComplete(&self) -> Option<DOMString>

Source§

fn SetAriaAutoComplete(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaBrailleLabel(&self) -> Option<DOMString>

Source§

fn SetAriaBrailleLabel(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaBrailleRoleDescription(&self) -> Option<DOMString>

Source§

fn SetAriaBrailleRoleDescription( &self, cx: &mut JSContext, value: Option<DOMString>, )

Source§

fn GetAriaBusy(&self) -> Option<DOMString>

Source§

fn SetAriaBusy(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaChecked(&self) -> Option<DOMString>

Source§

fn SetAriaChecked(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaColCount(&self) -> Option<DOMString>

Source§

fn SetAriaColCount(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaColIndex(&self) -> Option<DOMString>

Source§

fn SetAriaColIndex(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaColIndexText(&self) -> Option<DOMString>

Source§

fn SetAriaColIndexText(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaColSpan(&self) -> Option<DOMString>

Source§

fn SetAriaColSpan(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaCurrent(&self) -> Option<DOMString>

Source§

fn SetAriaCurrent(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaDescription(&self) -> Option<DOMString>

Source§

fn SetAriaDescription(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaDisabled(&self) -> Option<DOMString>

Source§

fn SetAriaDisabled(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaExpanded(&self) -> Option<DOMString>

Source§

fn SetAriaExpanded(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaHasPopup(&self) -> Option<DOMString>

Source§

fn SetAriaHasPopup(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaHidden(&self) -> Option<DOMString>

Source§

fn SetAriaHidden(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaInvalid(&self) -> Option<DOMString>

Source§

fn SetAriaInvalid(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaKeyShortcuts(&self) -> Option<DOMString>

Source§

fn SetAriaKeyShortcuts(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaLabel(&self) -> Option<DOMString>

Source§

fn SetAriaLabel(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaLevel(&self) -> Option<DOMString>

Source§

fn SetAriaLevel(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaLive(&self) -> Option<DOMString>

Source§

fn SetAriaLive(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaModal(&self) -> Option<DOMString>

Source§

fn SetAriaModal(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaMultiLine(&self) -> Option<DOMString>

Source§

fn SetAriaMultiLine(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaMultiSelectable(&self) -> Option<DOMString>

Source§

fn SetAriaMultiSelectable(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaOrientation(&self) -> Option<DOMString>

Source§

fn SetAriaOrientation(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaPlaceholder(&self) -> Option<DOMString>

Source§

fn SetAriaPlaceholder(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaPosInSet(&self) -> Option<DOMString>

Source§

fn SetAriaPosInSet(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaPressed(&self) -> Option<DOMString>

Source§

fn SetAriaPressed(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaReadOnly(&self) -> Option<DOMString>

Source§

fn SetAriaReadOnly(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaRelevant(&self) -> Option<DOMString>

Source§

fn SetAriaRelevant(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaRequired(&self) -> Option<DOMString>

Source§

fn SetAriaRequired(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaRoleDescription(&self) -> Option<DOMString>

Source§

fn SetAriaRoleDescription(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaRowCount(&self) -> Option<DOMString>

Source§

fn SetAriaRowCount(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaRowIndex(&self) -> Option<DOMString>

Source§

fn SetAriaRowIndex(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaRowIndexText(&self) -> Option<DOMString>

Source§

fn SetAriaRowIndexText(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaRowSpan(&self) -> Option<DOMString>

Source§

fn SetAriaRowSpan(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaSelected(&self) -> Option<DOMString>

Source§

fn SetAriaSelected(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaSetSize(&self) -> Option<DOMString>

Source§

fn SetAriaSetSize(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaSort(&self) -> Option<DOMString>

Source§

fn SetAriaSort(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaValueMax(&self) -> Option<DOMString>

Source§

fn SetAriaValueMax(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaValueMin(&self) -> Option<DOMString>

Source§

fn SetAriaValueMin(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaValueNow(&self) -> Option<DOMString>

Source§

fn SetAriaValueNow(&self, cx: &mut JSContext, value: Option<DOMString>)

Source§

fn GetAriaValueText(&self) -> Option<DOMString>

Source§

fn SetAriaValueText(&self, cx: &mut JSContext, value: Option<DOMString>)

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, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnloadstart( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnprogress( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnprogress( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnload( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnload( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnabort( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnabort( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnerror( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnerror( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnloadend( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnloadend( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn ReadAsArrayBuffer(&self, cx: &mut JSContext, blob: &Blob) -> ErrorResult

Source§

fn ReadAsDataURL(&self, cx: &mut JSContext, blob: &Blob) -> ErrorResult

Source§

fn ReadAsText( &self, cx: &mut JSContext, blob: &Blob, label: Option<DOMString>, ) -> 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, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnuncapturederror( &self, cx: &mut JSContext, 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 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, cx: &mut JSContext, value: DOMString)

Source§

fn SetRel(&self, cx: &mut JSContext, rel: DOMString)

Source§

fn RelList(&self, cx: &mut JSContext) -> DomRoot<DOMTokenList>

Source§

fn Href(&self) -> USVString

Source§

fn SetHref(&self, cx: &mut JSContext, value: USVString)

Source§

fn Origin(&self) -> USVString

Source§

fn Protocol(&self) -> USVString

Source§

fn SetProtocol(&self, cx: &mut JSContext, value: USVString)

Source§

fn Password(&self) -> USVString

Source§

fn SetPassword(&self, cx: &mut JSContext, value: USVString)

Source§

fn Hash(&self) -> USVString

Source§

fn SetHash(&self, cx: &mut JSContext, value: USVString)

Source§

fn Host(&self) -> USVString

Source§

fn SetHost(&self, cx: &mut JSContext, value: USVString)

Source§

fn Hostname(&self) -> USVString

Source§

fn SetHostname(&self, cx: &mut JSContext, value: USVString)

Source§

fn Port(&self) -> USVString

Source§

fn SetPort(&self, cx: &mut JSContext, value: USVString)

Source§

fn Pathname(&self) -> USVString

Source§

fn SetPathname(&self, cx: &mut JSContext, value: USVString)

Source§

fn Search(&self) -> USVString

Source§

fn SetSearch(&self, cx: &mut JSContext, value: USVString)

Source§

fn Username(&self) -> USVString

Source§

fn SetUsername(&self, cx: &mut JSContext, value: USVString)

Source§

fn ReferrerPolicy(&self) -> DOMString

Source§

fn Rel(&self) -> DOMString

Source§

fn Hreflang(&self) -> DOMString

Source§

fn SetHreflang(&self, cx: &mut JSContext, value: DOMString)

Source§

fn Type(&self) -> DOMString

Source§

fn SetType(&self, cx: &mut JSContext, value: DOMString)

Source§

fn Coords(&self) -> DOMString

Source§

fn SetCoords(&self, cx: &mut JSContext, value: DOMString)

Source§

fn Charset(&self) -> DOMString

Source§

fn SetCharset(&self, cx: &mut JSContext, value: DOMString)

Source§

fn Name(&self) -> DOMString

Source§

fn SetName(&self, cx: &mut JSContext, value: DOMString)

Source§

fn Rev(&self) -> DOMString

Source§

fn SetRev(&self, cx: &mut JSContext, value: DOMString)

Source§

fn Shape(&self) -> DOMString

Source§

fn SetShape(&self, cx: &mut JSContext, value: DOMString)

Source§

fn Target(&self) -> DOMString

Source§

fn SetTarget(&self, cx: &mut JSContext, value: DOMString)

Source§

fn SetReferrerPolicy(&self, cx: &mut JSContext, value: DOMString)

Source§

impl HTMLAreaElementMethods<DomTypeHolder> for HTMLAreaElement

Source§

fn SetRel(&self, cx: &mut JSContext, rel: DOMString)

Source§

fn RelList(&self, cx: &mut JSContext) -> DomRoot<DOMTokenList>

Source§

fn ReferrerPolicy(&self) -> DOMString

Source§

fn Href(&self) -> USVString

Source§

fn SetHref(&self, cx: &mut JSContext, value: USVString)

Source§

fn Origin(&self) -> USVString

Source§

fn Protocol(&self) -> USVString

Source§

fn SetProtocol(&self, cx: &mut JSContext, value: USVString)

Source§

fn Password(&self) -> USVString

Source§

fn SetPassword(&self, cx: &mut JSContext, value: USVString)

Source§

fn Hash(&self) -> USVString

Source§

fn SetHash(&self, cx: &mut JSContext, value: USVString)

Source§

fn Host(&self) -> USVString

Source§

fn SetHost(&self, cx: &mut JSContext, value: USVString)

Source§

fn Hostname(&self) -> USVString

Source§

fn SetHostname(&self, cx: &mut JSContext, value: USVString)

Source§

fn Port(&self) -> USVString

Source§

fn SetPort(&self, cx: &mut JSContext, value: USVString)

Source§

fn Pathname(&self) -> USVString

Source§

fn SetPathname(&self, cx: &mut JSContext, value: USVString)

Source§

fn Search(&self) -> USVString

Source§

fn SetSearch(&self, cx: &mut JSContext, value: USVString)

Source§

fn Username(&self) -> USVString

Source§

fn SetUsername(&self, cx: &mut JSContext, value: USVString)

Source§

fn Target(&self) -> DOMString

Source§

fn SetTarget(&self, cx: &mut JSContext, value: DOMString)

Source§

fn Rel(&self) -> DOMString

Source§

fn SetReferrerPolicy(&self, cx: &mut JSContext, value: DOMString)

Source§

fn NoHref(&self) -> bool

Source§

fn SetNoHref(&self, cx: &mut JSContext, value: bool)

Source§

impl HTMLAudioElementMethods<DomTypeHolder> for HTMLAudioElement

Source§

impl HTMLBaseElementMethods<DomTypeHolder> for HTMLBaseElement

Source§

impl HTMLBodyElementMethods<DomTypeHolder> for HTMLBodyElement

Source§

fn SetBackground(&self, cx: &mut JSContext, input: DOMString)

Source§

fn BgColor(&self) -> DOMString

Source§

fn SetBgColor(&self, cx: &mut JSContext, value: DOMString)

Source§

fn Text(&self) -> DOMString

Source§

fn SetText(&self, cx: &mut JSContext, value: DOMString)

Source§

fn Background(&self) -> DOMString

Source§

fn GetOnafterprint( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnafterprint( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnbeforeprint( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnbeforeprint( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnbeforeunload( &self, cx: &mut JSContext, ) -> Option<Rc<OnBeforeUnloadEventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnbeforeunload( &self, cx: &mut JSContext, listener: Option<Rc<OnBeforeUnloadEventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnhashchange( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnhashchange( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnlanguagechange( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnlanguagechange( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmessage( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmessage( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnmessageerror( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnmessageerror( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnoffline( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnoffline( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnonline( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnonline( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpagehide( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpagehide( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpagereveal( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpagereveal( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpageshow( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpageshow( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpageswap( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpageswap( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnpopstate( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnpopstate( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnrejectionhandled( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnrejectionhandled( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnstorage( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnstorage( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnunhandledrejection( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnunhandledrejection( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnunload( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnunload( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOngamepadconnected( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOngamepadconnected( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOngamepaddisconnected( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOngamepaddisconnected( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

impl HTMLButtonElementMethods<DomTypeHolder> for HTMLButtonElement

Source§

fn Command(&self) -> DOMString

Source§

fn GetForm(&self) -> Option<DomRoot<HTMLFormElement>>

Source§

fn Type(&self) -> DOMString

Source§

fn WillValidate(&self) -> bool

Source§

fn Validity(&self, can_gc: CanGc) -> DomRoot<ValidityState>

Source§

fn CheckValidity(&self, cx: &mut JSContext) -> bool

Source§

fn ReportValidity(&self, cx: &mut JSContext) -> bool

Source§

fn ValidationMessage(&self) -> DOMString

Source§

fn SetCustomValidity(&self, cx: &mut JSContext, error: DOMString)

Source§

fn SetCommand(&self, cx: &mut JSContext, value: DOMString)

Source§

fn Disabled(&self) -> bool

Source§

fn SetDisabled(&self, cx: &mut JSContext, value: bool)

Source§

fn SetType(&self, cx: &mut JSContext, value: DOMString)

Source§

fn FormAction(&self) -> DOMString

Source§

fn SetFormAction(&self, cx: &mut JSContext, value: DOMString)

Source§

fn FormEnctype(&self) -> DOMString

Source§

fn SetFormEnctype(&self, cx: &mut JSContext, value: DOMString)

Source§

fn FormMethod(&self) -> DOMString

Source§

fn SetFormMethod(&self, cx: &mut JSContext, value: DOMString)

Source§

fn FormTarget(&self) -> DOMString

Source§

fn SetFormTarget(&self, cx: &mut JSContext, value: DOMString)

Source§

fn FormNoValidate(&self) -> bool

Source§

fn SetFormNoValidate(&self, cx: &mut JSContext, value: bool)

Source§

fn Name(&self) -> DOMString

Source§

fn SetName(&self, cx: &mut JSContext, value: DOMString)

Source§

fn Value(&self) -> DOMString

Source§

fn SetValue(&self, cx: &mut JSContext, 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, cx: &mut JSContext, value: DOMString)

Source§

impl HTMLDataListElementMethods<DomTypeHolder> for HTMLDataListElement

Source§

impl HTMLDetailsElementMethods<DomTypeHolder> for HTMLDetailsElement

Source§

fn Name(&self) -> DOMString

Source§

fn SetName(&self, cx: &mut JSContext, value: DOMString)

Source§

fn Open(&self) -> bool

Source§

fn SetOpen(&self, cx: &mut JSContext, value: bool)

Source§

impl HTMLDialogElementMethods<DomTypeHolder> for HTMLDialogElement

Source§

impl HTMLDivElementMethods<DomTypeHolder> for HTMLDivElement

Source§

fn Align(&self) -> DOMString

Source§

fn SetAlign(&self, cx: &mut JSContext, 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, cx: &mut JSContext, ) -> Option<Rc<OnErrorEventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnerror( &self, cx: &mut JSContext, listener: Option<Rc<OnErrorEventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnload( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnload( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnblur( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnblur( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnfocus( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnfocus( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnresize( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnresize( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnscroll( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnscroll( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn Itemtypes(&self) -> Option<Vec<DOMString>>

Source§

fn PropertyNames(&self) -> Option<Vec<DOMString>>

Source§

fn Click(&self, cx: &mut JSContext)

Source§

fn Focus(&self, cx: &mut JSContext, options: &FocusOptions)

Source§

fn Blur(&self, cx: &mut JSContext)

Source§

fn ScrollParent(&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, cx: &mut JSContext, input: DOMString)

Source§

fn GetOuterText(&self) -> Fallible<DOMString>

Source§

fn SetOuterText(&self, cx: &mut JSContext, input: DOMString) -> Fallible<()>

Source§

fn Translate(&self) -> bool

Source§

fn SetTranslate(&self, cx: &mut JSContext, yesno: bool)

Source§

fn SetContentEditable( &self, cx: &mut JSContext, value: DOMString, ) -> ErrorResult

Source§

fn IsContentEditable(&self) -> bool

Source§

fn AttachInternals(&self, can_gc: CanGc) -> Fallible<DomRoot<ElementInternals>>

Source§

fn Nonce(&self) -> DOMString

Source§

fn SetNonce(&self, _cx: &mut JSContext, value: DOMString)

Source§

fn Autofocus(&self) -> bool

Source§

fn SetAutofocus(&self, cx: &mut JSContext, autofocus: bool)

Source§

fn TabIndex(&self) -> i32

Source§

fn SetTabIndex(&self, cx: &mut JSContext, tab_index: i32)

Source§

fn AccessKeyLabel(&self) -> DOMString

Source§

fn Title(&self) -> DOMString

Source§

fn SetTitle(&self, cx: &mut JSContext, value: DOMString)

Source§

fn Lang(&self) -> DOMString

Source§

fn SetLang(&self, cx: &mut JSContext, value: DOMString)

Source§

fn Dir(&self) -> DOMString

Source§

fn SetDir(&self, cx: &mut JSContext, value: DOMString)

Source§

fn Hidden(&self) -> bool

Source§

fn SetHidden(&self, cx: &mut JSContext, value: bool)

Source§

fn GetOnabort( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnabort( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnauxclick( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnauxclick( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnanimationstart( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnanimationstart( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnanimationiteration( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnanimationiteration( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnanimationend( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnanimationend( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnanimationcancel( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnanimationcancel( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnbeforeinput( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnbeforeinput( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnbeforematch( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnbeforematch( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnbeforetoggle( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnbeforetoggle( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncancel( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncancel( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncanplay( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncanplay( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncanplaythrough( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncanplaythrough( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnchange( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnchange( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnclick( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnclick( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnclose( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnclose( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncommand( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncommand( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncontextlost( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncontextlost( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncontextmenu( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncontextmenu( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncontextrestored( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncontextrestored( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncopy( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncopy( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncuechange( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncuechange( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOncut( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOncut( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndblclick( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndblclick( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndrag( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndrag( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndragend( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragend( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndragenter( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragenter( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndragleave( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragleave( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndragover( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragover( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndragstart( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndragstart( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndrop( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndrop( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOndurationchange( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOndurationchange( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnemptied( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnemptied( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnended( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnended( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnformdata( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnformdata( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOninput( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOninput( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOninvalid( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOninvalid( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnkeydown( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnkeydown( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnkeypress( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnkeypress( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnkeyup( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnkeyup( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnloadeddata( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnloadeddata( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnloadedmetadata( &self, cx: &mut JSContext, ) -> Option<Rc<EventHandlerNonNull<DomTypeHolder>>>

Source§

fn SetOnloadedmetadata( &self, cx: &mut JSContext, listener: Option<Rc<EventHandlerNonNull<DomTypeHolder>>>, )

Source§

fn GetOnloadstart( &self, cx: &mut