pub struct RewriteStrSettings<'h, 's> {
    pub element_content_handlers: Vec<(Cow<'s, Selector>, ElementContentHandlers<'h>)>,
    pub document_content_handlers: Vec<DocumentContentHandlers<'h>>,
    pub strict: bool,
    pub enable_esi_tags: bool,
}
Expand description

Specifies settings for the rewrite_str function.

Fields§

§element_content_handlers: Vec<(Cow<'s, Selector>, ElementContentHandlers<'h>)>

Specifies CSS selectors and rewriting handlers for elements and their inner content.

§Hint

element, comments and text convenience macros can be used to construct a (Selector, ElementContentHandlers) tuple.

§Example
use std::borrow::Cow;
use lol_html::{ElementContentHandlers, RewriteStrSettings};

let settings = RewriteStrSettings {
    element_content_handlers: vec! [
        (
            Cow::Owned("div[foo]".parse().unwrap()),
            ElementContentHandlers::default().element(|el| {
                // ...

                Ok(())
            })
        ),
        (
            Cow::Owned("div[foo]".parse().unwrap()),
            ElementContentHandlers::default().comments(|c| {
                // ...

                Ok(())
            })
        )
    ],
    ..RewriteStrSettings::default()
};
§document_content_handlers: Vec<DocumentContentHandlers<'h>>

Specifies rewriting handlers for the content without associating it to a particular CSS selector.

Refer to DocumentContentHandlers documentation for more information.

§Hint

doctype, doc_comments and doc_text convenience macros can be used to construct items of this vector.

§strict: bool

If set to true the rewriter bails out if it encounters markup that drives the HTML parser into ambigious state.

Since the rewriter operates on a token stream and doesn’t have access to a full DOM-tree, there are certain rare cases of non-conforming HTML markup which can’t be guaranteed to be parsed correctly without an ability to backtrace the tree.

Therefore, due to security considerations, sometimes it’s preferable to abort the rewriting process in case of such uncertainty.

One of the simplest examples of such markup is the following:

...
<select><xmp><script>"use strict";</script></select>
...

The <xmp> element is not allowed inside the <select> element, so in a browser the start tag for <xmp> will be ignored and following <script> element will be parsed and executed.

On the other hand, the <select> element itself can be also ignored depending on the context in which it was parsed. In this case, the <xmp> element will not be ignored and the <script> element along with its content will be parsed as a simple text inside it.

So, in this case the parser needs an ability to backtrace the DOM-tree to figure out the correct parsing context.

§Default

true when constructed with Settings::default().

§enable_esi_tags: bool

If enabled the rewriter enables support for Edge Side Includes tags, treating them as void elements and allowing them to be replaced with desired content.

Trait Implementations§

source§

impl Default for RewriteStrSettings<'_, '_>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'h, 's> From<RewriteStrSettings<'h, 's>> for Settings<'h, 's>

source§

fn from(settings: RewriteStrSettings<'h, 's>) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'h, 's> !RefUnwindSafe for RewriteStrSettings<'h, 's>

§

impl<'h, 's> !Send for RewriteStrSettings<'h, 's>

§

impl<'h, 's> !Sync for RewriteStrSettings<'h, 's>

§

impl<'h, 's> Unpin for RewriteStrSettings<'h, 's>

§

impl<'h, 's> !UnwindSafe for RewriteStrSettings<'h, 's>

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>,

§

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>,

§

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.