Struct moxie_dom::elements::metadata::BaseBuilder[][src]

pub struct BaseBuilder { /* fields omitted */ }
Expand description

The HTML <base> element specifies the base URL to use for all relative URLs contained within a document. There can be only one <base> element in a document.

If either of its inherent attributes are specified, this element must come before other elements with attributes whose values are URLs, such as ’s href attribute.

A type for initializing the element’s attributes before calling build.

Implementations

The base URL to be used throughout the document for relative URLs. Absolute and relative URLs are allowed.

A keyword or author-defined name of the default browsing context to display the result when links or forms cause navigation, for <a> or <form> elements without an explicit target attribute. The attribute value targets a browsing context (such as a tab, window, or <iframe>).

The following keywords have special meanings:

  • _self: Load the result into the same browsing context as the current one. (This is the default.)
  • _blank: Load the result into a new, unnamed browsing context.
  • _parent: Load the result into the parent browsing context of the current one. (If the current page is inside a frame.) If there is no parent, behaves the same way as _self.
  • _top: Load the result into the topmost browsing context (that is, the browsing context that is an ancestor of the current one, and has no parent). If there is no parent, behaves the same way as _self.

Trait Implementations

Declare an attribute of the element, mutating the actual element’s attribute when the passed value changes. Read more

Updates the element’s class.

Updates the element’s id.

Updates the element’s style. Read more

Declare an event handler on the element. Read more

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Set an event handler.

Keyboard shortcut to activate or add focus to the element.

Sets whether input is automatically capitalized when entered by user. It can have the following values: Read more

A value of “true” means the element is editable and a value of “false” means it isn’t.

The directionality of the element. It can have the following values: Read more

Defines whether the element can be dragged.

Indicates if the element is hidden or not.

Indicates whether the user agent must act as though the given node is absent for the purposes of user interaction events, in-page text searches (“find in page”), and text selection. Read more

Provides a hint as to the type of data that might be entered by the user while editing the element or its contents. The attribute can be used with form controls (such as the value of textarea elements), or in elements in an editing host (e.g., using contenteditable attribute). Read more

The language of an element’s attributes, text, and element contents.

Assigns a slot in a shadow DOM shadow tree to an element.

Indicates whether spell checking is allowed for the element.

Overrides the browser’s default tab order and follows the one specified instead. Read more

The text that appears in a popup box when mouse is over the element.

Initialize the element with all of the attributes so far.

The type of the DOM node

Retrieves access to the raw HTML element underlying the (CachedNode). Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the “raw” node for this child to bind to its parent.

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s. Read more

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s. Read more

Performs the conversion.

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

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

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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

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