Struct vlc::ModuleDescription[][src]

pub struct ModuleDescription {
    pub name: Option<String>,
    pub shortname: Option<String>,
    pub longname: Option<String>,
    pub help: Option<String>,
}

Description of a module. The strings are owned.

Fields

Trait Implementations

impl Clone for ModuleDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ModuleDescription
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ModuleDescription
[src]

impl Hash for ModuleDescription
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for ModuleDescription
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations