pub struct Plugin { /* private fields */ }
Expand description
The Plugin
class.
This API requires the following crate features to be activated: Plugin
Implementations§
Source§impl Plugin
impl Plugin
Sourcepub fn description(&self) -> String
pub fn description(&self) -> String
Getter for the description
field of this object.
This API requires the following crate features to be activated: Plugin
Source§impl Plugin
impl Plugin
Source§impl Plugin
impl Plugin
Source§impl Plugin
impl Plugin
Source§impl Plugin
impl Plugin
Source§impl Plugin
impl Plugin
Sourcepub fn named_item(&self, name: &str) -> Option<MimeType>
pub fn named_item(&self, name: &str) -> Option<MimeType>
The namedItem()
method.
This API requires the following crate features to be activated: MimeType
, Plugin
Methods from Deref<Target = Object>§
Sourcepub fn constructor(&self) -> Function
pub fn constructor(&self) -> Function
The constructor property returns a reference to the Object
constructor
function that created the instance object.
Sourcepub fn has_own_property(&self, property: &JsValue) -> bool
pub fn has_own_property(&self, property: &JsValue) -> bool
The hasOwnProperty()
method returns a boolean indicating whether the
object has the specified property as its own property (as opposed to
inheriting it).