Struct kuchiki::Doctype [] [src]

pub struct Doctype {
    pub name: String,
    pub public_id: String,
    pub system_id: String,
}

Data specific to doctype nodes.

Fields

name: String

The name of the doctype

public_id: String

The public ID of the doctype

system_id: String

The system ID of the doctype

Trait Implementations

impl Clone for Doctype
[src]

fn clone(&self) -> Doctype

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl PartialEq for Doctype
[src]

fn eq(&self, __arg_0: &Doctype) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &Doctype) -> bool

This method tests for !=.

impl Debug for Doctype
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.