#[repr(C)]
pub struct HTMLFormElement { htmlelement: HTMLElement, marked_for_reset: Cell<bool>, constructing_entry_list: Cell<bool>, elements: DomOnceCell<HTMLFormControlsCollection>, generation_id: Cell<GenerationId>, controls: DomRefCell<Vec<Dom<Element>>>, past_names_map: DomRefCell<HashMap<Atom, (Dom<Element>, Tm)>>, firing_submission_events: Cell<bool>, rel_list: MutNullableDom<DOMTokenList>, }

Fields§

§htmlelement: HTMLElement§marked_for_reset: Cell<bool>§constructing_entry_list: Cell<bool>

https://html.spec.whatwg.org/multipage/#constructing-entry-list

§elements: DomOnceCell<HTMLFormControlsCollection>§generation_id: Cell<GenerationId>§controls: DomRefCell<Vec<Dom<Element>>>§past_names_map: DomRefCell<HashMap<Atom, (Dom<Element>, Tm)>>§firing_submission_events: Cell<bool>§rel_list: MutNullableDom<DOMTokenList>

Implementations§

source§

impl HTMLFormElement

source

fn new_inherited(
    local_name: LocalName,
    prefix: Option<Prefix>,
    document: &Document
) -> HTMLFormElement

source

pub fn new(
    local_name: LocalName,
    prefix: Option<Prefix>,
    document: &Document,
    proto: Option<HandleObject<'_>>
) -> Root<Dom<HTMLFormElement>>

source

fn filter_for_radio_list(
    mode: RadioListMode,
    child: &Element,
    name: &Atom
) -> bool

source

pub fn nth_for_radio_list(
    &self,
    index: u32,
    mode: RadioListMode,
    name: &Atom
) -> Option<Root<Dom<Node>>>

source

pub fn count_for_radio_list(&self, mode: RadioListMode, name: &Atom) -> u32

source§

impl HTMLFormElement

source

fn pick_encoding(&self) -> &'static Encoding

source

fn encode_plaintext(&self, form_data: &mut Vec<FormDatum>) -> String

source

pub fn submit(
    &self,
    submit_method_flag: SubmittedFrom,
    submitter: FormSubmitter<'_>
)

source

fn mutate_action_url(
    &self,
    form_data: &mut Vec<FormDatum>,
    load_data: LoadData,
    encoding: &'static Encoding,
    target: &Window
)

source

fn submit_entity_body(
    &self,
    form_data: &mut Vec<FormDatum>,
    load_data: LoadData,
    enctype: FormEncType,
    encoding: &'static Encoding,
    target: &Window
)

source

fn set_url_query_pairs<'a>(
    &self,
    url: &mut ServoUrl,
    pairs: impl Iterator<Item = (&'a str, String)>
)

source

fn plan_to_navigate(&self, load_data: LoadData, target: &Window)

source

fn interactive_validation(&self) -> Result<(), ()>

Interactively validate the constraints of form elements https://html.spec.whatwg.org/multipage/#interactively-validate-the-constraints

source

fn static_validation(&self) -> Result<(), Vec<Root<Dom<Element>>>>

Statitically validate the constraints of form elements https://html.spec.whatwg.org/multipage/#statically-validate-the-constraints

source

fn get_unclean_dataset(
    &self,
    submitter: Option<FormSubmitter<'_>>,
    encoding: Option<&'static Encoding>
) -> Vec<FormDatum>

https://html.spec.whatwg.org/multipage/#constructing-the-form-data-set terminology note: “form data set” = “entry list” Steps range from 3 to 5 5.x substeps are mostly handled inside element-specific methods

source

pub fn get_form_dataset(
    &self,
    submitter: Option<FormSubmitter<'_>>,
    encoding: Option<&'static Encoding>
) -> Option<Vec<FormDatum>>

source

pub fn reset(&self, _reset_method_flag: ResetFrom)

source

fn add_control<T: ?Sized + FormControl>(&self, control: &T)

source

fn remove_control<T: ?Sized + FormControl>(&self, control: &T)

Trait Implementations§

source§

impl Castable for HTMLFormElement

source§

fn is<T>(&self) -> boolwhere
    T: DerivedFrom<Self>,

Check whether a DOM object implements one of its deriving interfaces.
source§

fn upcast<T>(&self) -> &Twhere
    T: Castable,
    Self: DerivedFrom<T>,

Cast a DOM object upwards to one of the interfaces it derives from.
source§

fn downcast<T>(&self) -> Option<&T>where
    T: DerivedFrom<Self>,

Cast a DOM object downwards to one of the interfaces it might implement.
source§

impl DomObject for HTMLFormElement

source§

fn reflector(&self) -> &Reflector

Returns the receiver’s reflector.
source§

fn global(&self) -> Root<Dom<GlobalScope>>where
    Self: Sized,

Returns the global scope of the realm that the DomObject was created in.
source§

impl DomObjectWrap for HTMLFormElement

source§

const WRAP: unsafe fn(_: SafeJSContext, _: &GlobalScope, _: Option<HandleObject<'_>>, _: Box<Self>) -> Root<Dom<Self>> = {dom::bindings::codegen::Bindings::HTMLFormElementBinding::HTMLFormElementBinding::Wrap as for<'a, 'b> unsafe fn(script_runtime::JSContext, &'a dom::globalscope::GlobalScope, std::option::Option<js::rust::Handle<'b, *mut js::jsapi::JSObject>>, std::boxed::Box<dom::htmlformelement::HTMLFormElement>) -> dom::bindings::root::Root<dom::bindings::root::Dom<dom::htmlformelement::HTMLFormElement>>}

Function pointer to the general wrap function type
source§

impl HTMLFormElementMethods for HTMLFormElement

source§

fn CheckValidity(&self) -> bool

https://html.spec.whatwg.org/multipage/#dom-form-checkvalidity

source§

fn ReportValidity(&self) -> bool

https://html.spec.whatwg.org/multipage/#dom-form-reportvalidity

source§

fn AcceptCharset(&self) -> DOMString

source§

fn SetAcceptCharset(&self, value: DOMString)

source§

fn Action(&self) -> DOMString

source§

fn SetAction(&self, value: DOMString)

source§

fn Autocomplete(&self) -> DOMString

source§

fn SetAutocomplete(&self, value: DOMString)

source§

fn Enctype(&self) -> DOMString

source§

fn SetEnctype(&self, value: DOMString)

source§

fn Encoding(&self) -> DOMString

source§

fn SetEncoding(&self, value: DOMString)

source§

fn Method(&self) -> DOMString

source§

fn SetMethod(&self, value: DOMString)

source§

fn Name(&self) -> DOMString

source§

fn SetName(&self, value: DOMString)

source§

fn NoValidate(&self) -> bool

source§

fn SetNoValidate(&self, value: bool)

source§

fn Target(&self) -> DOMString

source§

fn SetTarget(&self, value: DOMString)

source§

fn Rel(&self) -> DOMString

source§

fn Submit(&self)

source§

fn RequestSubmit(&self, submitter: Option<&HTMLElement>) -> Result<(), Error>

source§

fn Reset(&self)

source§

fn Elements(&self) -> Root<Dom<HTMLFormControlsCollection>>

source§

fn Length(&self) -> u32

source§

fn IndexedGetter(&self, index: u32) -> Option<Root<Dom<Element>>>

source§

fn NamedGetter(&self, name: DOMString) -> Option<RadioNodeListOrElement>

source§

fn SetRel(&self, rel: DOMString)

source§

fn RelList(&self) -> Root<Dom<DOMTokenList>>

source§

fn SupportedPropertyNames(&self) -> Vec<DOMString>

source§

impl HasParent for HTMLFormElement

source§

fn as_parent(&self) -> &HTMLElement

This is used in a type assertion to ensure that the source and webidls agree as to what the parent type is

§

type Parent = HTMLElement

source§

impl IDLInterface for HTMLFormElement

source§

fn derives(class: &'static DOMClass) -> bool

Returns whether the given DOM class derives that interface.
source§

impl JSTraceable for HTMLFormElement

source§

unsafe fn trace(&self, tracer: *mut JSTracer)

Trace self.
source§

impl MallocSizeOf for HTMLFormElement

source§

fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize

Measure the heap usage of all descendant heap-allocated structures, but not the space taken up by the value itself.
source§

impl MutDomObject for HTMLFormElement

source§

unsafe fn init_reflector(&self, obj: *mut JSObject)

Initializes the Reflector
source§

impl PartialEq<HTMLFormElement> for HTMLFormElement

source§

fn eq(&self, other: &HTMLFormElement) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl ToJSValConvertible for HTMLFormElement

source§

unsafe fn to_jsval(&self, cx: *mut JSContext, rval: MutableHandleValue<'_>)

Convert self to a JSVal. JSAPI failure causes a panic.
source§

impl VirtualMethods for HTMLFormElement

source§

fn super_type(&self) -> Option<&dyn VirtualMethods>

Returns self as the superclass of the implementation for this trait, if any.
source§

fn unbind_from_tree(&self, context: &UnbindContext<'_>)

Called when a Node is removed from a tree, where ‘tree_connected’ indicates whether the tree is part of a Document. Implements removing steps: https://dom.spec.whatwg.org/#concept-node-remove-ext
source§

fn parse_plain_attribute(&self, name: &LocalName, value: DOMString) -> AttrValue

Returns the right AttrValue variant for the attribute with name name on this element.
source§

fn attribute_mutated(&self, attr: &Attr, mutation: AttributeMutation<'_>)

source§

fn attribute_affects_presentational_hints(&self, attr: &Attr) -> bool

Returns true if given attribute attr affects style of the given element.
source§

fn bind_to_tree(&self, context: &BindContext)

Called when a Node is appended to a tree, where ‘tree_connected’ indicates whether the tree is part of a Document.
source§

fn children_changed(&self, mutation: &ChildrenMutation<'_>)

Called on the parent when its children are changed.
source§

fn handle_event(&self, event: &Event)

Called during event dispatch after the bubbling phase completes.
source§

fn adopting_steps(&self, old_doc: &Document)

source§

fn cloning_steps(
    &self,
    copy: &Node,
    maybe_doc: Option<&Document>,
    clone_children: CloneChildrenFlag
)

source§

fn pop(&self)

Called on an element when it is popped off the stack of open elements of a parser.
source§

impl DerivedFrom<Element> for HTMLFormElement

source§

impl DerivedFrom<EventTarget> for HTMLFormElement

source§

impl DerivedFrom<HTMLElement> for HTMLFormElement

source§

impl DerivedFrom<Node> for HTMLFormElement

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere
    T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere
    U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> MaybeBoxed<Box<T, Global>> for T

source§

fn maybe_boxed(self) -> Box<T, Global>

Convert
source§

impl<T> MaybeBoxed<T> for T

source§

fn maybe_boxed(self) -> T

Convert
source§

impl<T> Pointable for T

source§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere
    U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere
    U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for Twhere
    V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
    S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> Erased for T