Skip to main content

Progress

Struct Progress 

Source
pub struct Progress<'t> { /* private fields */ }
Expand description

<progress>: Progress Indicator element

Implementations§

Source§

impl<'t> Progress<'t>

<progress> items

Source

pub fn max<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add max attribute

Source

pub fn value<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add value attribute

Source

pub fn cdata<'a, V>(&mut self, text: V) -> &mut Self
where V: Into<Value<'a>>,

Add character data content

These characters will be replaced with entities:

CharEntity
&&amp;
<&lt;
>&gt;
Source

pub fn cdata_len<'a, V>(&mut self, text: V, len: usize) -> &mut Self
where V: Into<Value<'a>>,

Add character data content with a maximum character limit

CharEntity
&&amp;
<&lt;
>&gt;
Source

pub fn a(&mut self) -> A<'_>

Add A child element

Source

pub fn abbr(&mut self) -> Abbr<'_>

Add Abbr child element

Source

pub fn area(&mut self) -> Area<'_>

Add Area child element

Source

pub fn audio(&mut self) -> Audio<'_>

Add Audio child element

Source

pub fn b(&mut self) -> B<'_>

Add B child element

Source

pub fn bdi(&mut self) -> Bdi<'_>

Add Bdi child element

Source

pub fn bdo(&mut self) -> Bdo<'_>

Add Bdo child element

Source

pub fn br(&mut self) -> Br<'_>

Add Br child element

Source

pub fn button(&mut self) -> Button<'_>

Add Button child element

Source

pub fn canvas(&mut self) -> Canvas<'_>

Add Canvas child element

Source

pub fn cite(&mut self) -> Cite<'_>

Add Cite child element

Source

pub fn code(&mut self) -> Code<'_>

Add Code child element

Source

pub fn data(&mut self) -> Data<'_>

Add Data child element

Source

pub fn datalist(&mut self) -> DataList<'_>

Add DataList child element

Source

pub fn del(&mut self) -> Del<'_>

Add Del child element

Source

pub fn dfn(&mut self) -> Dfn<'_>

Add Dfn child element

Source

pub fn em(&mut self) -> Em<'_>

Add Em child element

Source

pub fn embed(&mut self) -> Embed<'_>

Add Embed child element

Source

pub fn i(&mut self) -> I<'_>

Add I child element

Source

pub fn iframe(&mut self) -> IFrame<'_>

Add IFrame child element

Source

pub fn img(&mut self) -> Img<'_>

Add Img child element

Source

pub fn input(&mut self) -> Input<'_>

Add Input child element

Source

pub fn ins(&mut self) -> Ins<'_>

Add Ins child element

Source

pub fn kbd(&mut self) -> Kbd<'_>

Add Kbd child element

Source

pub fn label(&mut self) -> Label<'_>

Add Label child element

Add Link child element

Source

pub fn map(&mut self) -> Map<'_>

Add Map child element

Source

pub fn mark(&mut self) -> Mark<'_>

Add Mark child element

Source

pub fn meta(&mut self) -> Meta<'_>

Add Meta child element

Source

pub fn meter(&mut self) -> Meter<'_>

Add Meter child element

Source

pub fn noscript(&mut self) -> NoScript<'_>

Add NoScript child element

Source

pub fn object(&mut self) -> Object<'_>

Add Object child element

Source

pub fn output(&mut self) -> Output<'_>

Add Output child element

Source

pub fn picture(&mut self) -> Picture<'_>

Add Picture child element

Source

pub fn progress(&mut self) -> Progress<'_>

Add Progress child element

Source

pub fn q(&mut self) -> Q<'_>

Add Q child element

Source

pub fn ruby(&mut self) -> Ruby<'_>

Add Ruby child element

Source

pub fn s(&mut self) -> S<'_>

Add S child element

Source

pub fn samp(&mut self) -> Samp<'_>

Add Samp child element

Source

pub fn script(&mut self) -> Script<'_>

Add Script child element

Source

pub fn select(&mut self) -> Select<'_>

Add Select child element

Source

pub fn slot_el(&mut self) -> Slot<'_>

Add Slot child element

Source

pub fn small(&mut self) -> Small<'_>

Add Small child element

Source

pub fn span(&mut self) -> Span<'_>

Add Span child element

Source

pub fn strong(&mut self) -> Strong<'_>

Add Strong child element

Source

pub fn sub(&mut self) -> Sub<'_>

Add Sub child element

Source

pub fn sup(&mut self) -> Sup<'_>

Add Sup child element

Source

pub fn svg(&mut self) -> Svg<'_>

Add Svg child element

Source

pub fn template(&mut self) -> Template<'_>

Add Template child element

Source

pub fn textarea(&mut self) -> TextArea<'_>

Add TextArea child element

Source

pub fn time(&mut self) -> Time<'_>

Add Time child element

Source

pub fn u(&mut self) -> U<'_>

Add U child element

Source

pub fn var(&mut self) -> Var<'_>

Add Var child element

Source

pub fn video(&mut self) -> Video<'_>

Add Video child element

Source

pub fn wbr(&mut self) -> Wbr<'_>

Add Wbr child element

Source

pub fn comment<'v, V>(&mut self, com: V) -> &mut Self
where V: Into<Value<'v>>,

Add a comment

These characters will be replaced with entities:

CharEntity
-&hyphen;
<&lt;
>&gt;
Source

pub fn raw(&mut self, trusted: impl AsRef<str>) -> &mut Self

Add raw content

WARNING: trusted is used verbatim, with no escaping; do not call with untrusted content.

Source

pub fn close(&'t mut self) -> &'t mut Tree

Close the element

  • Closes all child elements
  • Adds the closing tag if necessary (e.g. </progress>)
Source§

impl<'t> Progress<'t>

Global attributes

Source

pub fn id<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add id attribute

Source

pub fn class<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add class attribute

Source

pub fn accesskey<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add accesskey attribute

Source

pub fn autocapitalize<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add autocapitalize attribute

Source

pub fn autocorrect<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add autocorrect attribute

Source

pub fn autofocus(&mut self) -> &mut Self

Add autofocus Boolean attribute

Source

pub fn contenteditable<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add contenteditable attribute

Source

pub fn data_<'a, V>(&mut self, name: &str, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add data-* attribute

Source

pub fn dir<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add dir attribute

Source

pub fn draggable<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add draggable attribute

Source

pub fn enterkeyhint<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add enterkeyhint attribute

Source

pub fn exportparts<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add exportparts attribute

Source

pub fn hidden<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add hidden attribute

Source

pub fn inert(&mut self) -> &mut Self

Add inert Boolean attribute

Source

pub fn inputmode<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add inputmode attribute

Source

pub fn is<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add is attribute

Source

pub fn itemid<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add itemid attribute

Source

pub fn itemprop<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add itemprop attribute

Source

pub fn itemref<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add itemref attribute

Source

pub fn itemscope(&mut self) -> &mut Self

Add itemscope Boolean attribute

Source

pub fn itemtype<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add itemtype attribute

Source

pub fn lang<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add lang attribute

Source

pub fn nonce<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add nonce attribute

Source

pub fn onblur<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add onblur attribute

Source

pub fn onchange<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add onchange attribute

Source

pub fn onclick<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add onclick attribute

Source

pub fn onclose<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add onclose attribute

Source

pub fn onerror<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add onerror attribute

Source

pub fn onfocus<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add onfocus attribute

Source

pub fn part<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add part attribute

Source

pub fn popover<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add popover attribute

Source

pub fn role<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add role attribute

Source

pub fn slot<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add slot attribute

Source

pub fn spellcheck<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add spellcheck attribute

Source

pub fn style<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add style attribute

Source

pub fn tabindex<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add tabindex attribute

Source

pub fn title<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add title attribute

Source

pub fn translate<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add translate attribute

Source

pub fn aria_atomic<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-atomic attribute

Source

pub fn aria_busy<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-busy attribute

Source

pub fn aria_controls<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-controls attribute

Source

pub fn aria_current<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-current attribute

Source

pub fn aria_describedby<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-describedby attribute

Source

pub fn aria_description<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-description attribute

Source

pub fn aria_details<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-details attribute

Source

pub fn aria_disabled<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-disabled attribute

Source

pub fn aria_errormessage<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-errormessage attribute

Source

pub fn aria_flowto<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-flowto attribute

Source

pub fn aria_haspopup<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-haspopup attribute

Source

pub fn aria_hidden<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-hidden attribute

Source

pub fn aria_invalid<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-invalid attribute

Source

pub fn aria_keyshortcuts<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-keyshortcuts attribute

Source

pub fn aria_label<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-label attribute

Source

pub fn aria_labelledby<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-labelledby attribute

Source

pub fn aria_live<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-live attribute

Source

pub fn aria_owns<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-owns attribute

Source

pub fn aria_relevant<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-relevant attribute

Source

pub fn aria_roledescription<'a, V>(&mut self, val: V) -> &mut Self
where V: Into<Value<'a>>,

Add aria-roledescription attribute

Auto Trait Implementations§

§

impl<'t> Freeze for Progress<'t>

§

impl<'t> RefUnwindSafe for Progress<'t>

§

impl<'t> Send for Progress<'t>

§

impl<'t> Sync for Progress<'t>

§

impl<'t> Unpin for Progress<'t>

§

impl<'t> UnsafeUnpin for Progress<'t>

§

impl<'t> !UnwindSafe for Progress<'t>

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.