pub trait DOMHTMLModElementExt: 'static {
    fn cite(&self) -> Option<GString>;
    fn date_time(&self) -> Option<GString>;
    fn set_cite(&self, value: &str);
    fn set_date_time(&self, value: &str);
    fn connect_cite_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_date_time_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all DOMHTMLModElement methods.

Implementors

DOMHTMLModElement

Required Methods

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Implementors