[][src]Struct htmldom_read::LoadSettings

pub struct LoadSettings { /* fields omitted */ }

Settings that provide different options of how to parse HTML.

Methods

impl LoadSettings[src]

pub fn new() -> Self[src]

pub fn all_text_separately(self, b: bool) -> Self[src]

Store all text values in separate children nodes. Even those text which is alone in tag body without other children.

True by default.

pub fn set_all_text_separately(&mut self, b: bool)[src]

See [all_text_separately].

pub fn owned_children(self) -> Self[src]

Node owns all of its children. This is a default value.

pub fn sharable_children(self) -> Self[src]

Node can share its children. Opposite to owned_children.

Trait Implementations

impl Default for LoadSettings[src]

impl PartialEq<LoadSettings> for LoadSettings[src]

impl Clone for LoadSettings[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for LoadSettings[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.