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

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

The HTML <meta> element represents metadata that cannot be represented by other HTML meta-related elements, like <base>, <link>, <script>, <style> or <title>.

Note: the attribute name has a specific meaning for the <meta> element, and the itemprop attribute must not be set on the same <meta> element that has any existing name, http-equiv or charset attributes.

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

Implementations

This attribute declares the document’s character encoding. If the attribute is present, its value must be an ASCII case-insensitive match for the string “utf-8”.

This attribute contains the value for the http-equiv or name attribute, depending on which is used.

Defines a pragma directive. The attribute is named http-equiv(alent) because all the allowed values are names of particular HTTP headers:

  • content-security-policy: Allows page authors to define a content policy for the current page. Content policies mostly specify allowed server origins and script endpoints which help guard against cross-site scripting attacks.
  • content-type: If specified, the content attribute must have the value text/html; charset=utf-8. Note: Can only be used in documents served with a text/html MIME type — not in documents served with an XML MIME type.
  • default-style: Sets the name of the default CSS style sheet set.
  • x-ua-compatible: If specified, the content attribute must have the value “IE=edge”. User agents are required to ignore this pragma.
  • refresh: This instruction specifies:
    • The number of seconds until the page should be reloaded - only if the content attribute contains a positive integer.
    • The number of seconds until the page should redirect to another - only if the content attribute contains a positive integer followed by the string ‘;url=’, and a valid URL.
    • Accessibility concerns: Pages set with a refresh value run the risk of having the time interval being too short. People navigating with the aid of assistive technology such as a screen reader may be unable to read through and understand the page’s content before being automatically redirected. The abrupt, unannounced updating of the page content may also be disorienting for people experiencing low vision conditions.

The name and content attributes can be used together to provide document metadata in terms of name-value pairs, with the name attribute giving the metadata name, and the content attribute giving the value.

See standard metadata names for details about the set of standard metadata names defined in the HTML specification.

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