[][src]Struct xml_dom::level2::ext::decl::XmlDecl

pub struct XmlDecl { /* fields omitted */ }

The following productions are taken from XML 1.1 §2.8 Prolog and Document Type Declaration.

prolog       ::=  XMLDecl Misc* (doctypedecl Misc*)?
XMLDecl      ::=  '<?xml' VersionInfo EncodingDecl? SDDecl? S? '?>'
VersionInfo  ::=  S 'version' Eq ("'" VersionNum "'" | '"' VersionNum '"')
Eq           ::=  S? '=' S?
VersionNum   ::=  '1.1'
Misc         ::=  Comment | PI | S

EncodingDecl ::=  S 'encoding' Eq ('"' EncName '"' | "'" EncName "'" )
EncName      ::=  [A-Za-z] ([A-Za-z0-9._] | '-')*

SDDecl       ::=  S 'standalone' Eq (("'" ('yes' | 'no') "'") | ('"' ('yes' | 'no') '"'))

Methods

impl XmlDecl[src]

pub fn new(
    version: XmlVersion,
    encoding: Option<String>,
    standalone: Option<bool>
) -> Self
[src]

Construct a new XmlDecl.

pub fn version(&self) -> XmlVersion[src]

Return the version asserted in this declaration.

pub fn encoding(&self) -> Option<String>[src]

Return the encoding value in this declaration.

pub fn standalone(&self) -> Option<bool>[src]

Return the standalone value in this declaration.

Trait Implementations

impl Clone for XmlDecl[src]

impl Debug for XmlDecl[src]

impl Default for XmlDecl[src]

impl Display for XmlDecl[src]

Auto Trait Implementations

impl RefUnwindSafe for XmlDecl

impl Send for XmlDecl

impl Sync for XmlDecl

impl Unpin for XmlDecl

impl UnwindSafe for XmlDecl

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> 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> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.