pub trait DOMHTMLPreElementExt: 'static {
    fn width(&self) -> c_long;
    fn wraps(&self) -> bool;
    fn set_width(&self, value: c_long);
    fn set_wrap(&self, value: bool);
    fn connect_width_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_wrap_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all DOMHTMLPreElement methods.

Implementors

DOMHTMLPreElement

Required Methods

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A glong

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gboolean

Deprecated since 2.22

Use JavaScriptCore API instead

value

A glong

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gboolean

Implementors