logo
pub struct ModuleInfo<'a> {
    pub index: u32,
    pub name: Option<Cow<'a, str>>,
    pub argument: Option<Cow<'a, str>>,
    pub n_used: Option<u32>,
    pub proplist: Proplist,
}
Expand description

Stores information about modules.

Please note that this structure can be extended as part of evolutionary API updates at any time in any new release.

Fields

index: u32

Index of the module.

name: Option<Cow<'a, str>>

Name of the module.

argument: Option<Cow<'a, str>>

Argument string of the module.

n_used: Option<u32>

Usage counter or None if invalid.

proplist: Proplist

Property list.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.