pub struct Output {Show 25 fields
pub name: Option<EqName>,
pub method: Option<OutputMethod>,
pub allow_duplicate_names: bool,
pub build_tree: bool,
pub byte_order_mark: bool,
pub cdata_section_elements: Option<Vec<EqName>>,
pub doctype_public: Option<String>,
pub doctype_system: Option<String>,
pub encoding: Option<String>,
pub escape_uri_attributes: bool,
pub html_version: Option<Decimal>,
pub include_content_type: bool,
pub indent: bool,
pub item_separator: Option<String>,
pub json_node_output_method: Option<JsonNodeOutputMethod>,
pub media_type: Option<String>,
pub normalization_form: Option<NormalizationForm>,
pub omit_xml_declaration: bool,
pub parameter_document: Option<Uri>,
pub standalone: Option<Standalone>,
pub suppress_indentation: Option<Vec<EqName>>,
pub undeclare_prefixes: bool,
pub use_character_maps: Option<Vec<EqName>>,
pub version: Option<NmToken>,
pub span: Span,
}Fields§
§name: Option<EqName>§method: Option<OutputMethod>§allow_duplicate_names: bool§build_tree: bool§byte_order_mark: bool§cdata_section_elements: Option<Vec<EqName>>§doctype_public: Option<String>§doctype_system: Option<String>§encoding: Option<String>§escape_uri_attributes: bool§html_version: Option<Decimal>§include_content_type: bool§indent: bool§item_separator: Option<String>§json_node_output_method: Option<JsonNodeOutputMethod>§media_type: Option<String>§normalization_form: Option<NormalizationForm>§omit_xml_declaration: bool§parameter_document: Option<Uri>§standalone: Option<Standalone>§suppress_indentation: Option<Vec<EqName>>§undeclare_prefixes: bool§use_character_maps: Option<Vec<EqName>>§version: Option<NmToken>§span: SpanTrait Implementations§
impl Eq for Output
impl StructuralPartialEq for Output
Auto Trait Implementations§
impl Freeze for Output
impl RefUnwindSafe for Output
impl Send for Output
impl Sync for Output
impl Unpin for Output
impl UnwindSafe for Output
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more