Enum mumble_link::Status [] [src]

pub enum Status<'a> {
    Closed(&'a Error),
    InUse {
        name: String,
        description: String,
    },
    Active,
}

The status of a SharedLink.

Variants

The link is closed. This is usually because Mumble is not running or the link was closed manually with deactivate().

The link is in use by another application.

Fields

The name of the other application.

The description of the other application.

The link is active.

Trait Implementations

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

Formats the value using the given formatter.