Struct html5ever::serialize::SerializeOpts
source · pub struct SerializeOpts {
pub scripting_enabled: bool,
pub traversal_scope: TraversalScope,
pub create_missing_parent: bool,
}
Fields
scripting_enabled: bool
Is scripting enabled?
traversal_scope: TraversalScope
Serialize the root node? Default: ChildrenOnly
create_missing_parent: bool
If the serializer is asked to serialize an invalid tree, the default
behavior is to panic in the event that an end_elem
is created without a
matching start_elem
. Setting this to true will prevent those panics by
creating a default parent on the element stack. No extra start elem will
actually be written. Default: false
Trait Implementations
sourceimpl Clone for SerializeOpts
impl Clone for SerializeOpts
sourcefn clone(&self) -> SerializeOpts
fn clone(&self) -> SerializeOpts
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Default for SerializeOpts
impl Default for SerializeOpts
sourcefn default() -> SerializeOpts
fn default() -> SerializeOpts
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for SerializeOpts
impl Send for SerializeOpts
impl Sync for SerializeOpts
impl Unpin for SerializeOpts
impl UnwindSafe for SerializeOpts
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more