Trait webkit2gtk_webextension::DOMDocumentTypeExt[][src]

pub trait DOMDocumentTypeExt {
    fn get_entities(&self) -> Option<DOMNamedNodeMap>;
fn get_internal_subset(&self) -> Option<String>;
fn get_name(&self) -> Option<String>;
fn get_notations(&self) -> Option<DOMNamedNodeMap>;
fn get_public_id(&self) -> Option<String>;
fn get_system_id(&self) -> Option<String>;
fn connect_property_entities_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_internal_subset_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_name_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_notations_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_public_id_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_system_id_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors