Struct css_inline::InlineOptions
source · pub struct InlineOptions<'a> {
pub keep_style_tags: bool,
pub keep_link_tags: bool,
pub base_url: Option<Url>,
pub load_remote_stylesheets: bool,
pub extra_css: Option<Cow<'a, str>>,
pub preallocate_node_capacity: usize,
}
Expand description
Configuration options for CSS inlining process.
Fields§
Keep “style” tags after inlining.
Keep “link” tags after inlining.
base_url: Option<Url>
Used for loading external stylesheets via relative URLs.
load_remote_stylesheets: bool
Whether remote stylesheets should be loaded or not.
extra_css: Option<Cow<'a, str>>
Additional CSS to inline.
preallocate_node_capacity: usize
Pre-allocate capacity for HTML nodes during parsing. It can improve performance when you have an estimate of the number of nodes in your HTML document.
Implementations§
source§impl<'a> InlineOptions<'a>
impl<'a> InlineOptions<'a>
Override whether “style” tags should be kept after processing.
Override whether “link” tags should be kept after processing.
sourcepub fn base_url(self, base_url: Option<Url>) -> Self
pub fn base_url(self, base_url: Option<Url>) -> Self
Set base URL that will be used for loading external stylesheets via relative URLs.
sourcepub fn load_remote_stylesheets(self, load_remote_stylesheets: bool) -> Self
pub fn load_remote_stylesheets(self, load_remote_stylesheets: bool) -> Self
Override whether remote stylesheets should be loaded.
sourcepub fn preallocate_node_capacity(self, preallocate_node_capacity: usize) -> Self
pub fn preallocate_node_capacity(self, preallocate_node_capacity: usize) -> Self
Set the initial node capacity for HTML tree.
sourcepub const fn build(self) -> CSSInliner<'a>
pub const fn build(self) -> CSSInliner<'a>
Create a new CSSInliner
instance from this options.
Trait Implementations§
source§impl<'a> Debug for InlineOptions<'a>
impl<'a> Debug for InlineOptions<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for InlineOptions<'a>
impl<'a> Send for InlineOptions<'a>
impl<'a> Sync for InlineOptions<'a>
impl<'a> Unpin for InlineOptions<'a>
impl<'a> UnwindSafe for InlineOptions<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more