Struct ao::DriverInfo [] [src]

pub struct DriverInfo<'a> {
    pub flavor: DriverType,
    pub name: &'a str,
    pub short_name: &'a str,
    pub comment: Option<&'a str>,
}

Properties and metadata for a driver.

Fields

Type of the driver (live or file).

Full name of driver.

May contain any single line of text.

Short name of driver.

This is the driver name used to refer to the driver when performing lookups. It contains only alphanumeric characters, and no whitespace.

A driver-specified comment.

Trait Implementations

impl<'a> Debug for DriverInfo<'a>
[src]

Formats the value using the given formatter.

impl<'a> Clone for DriverInfo<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Copy for DriverInfo<'a>
[src]