Enum mumble_link::Status
[−]
[src]
pub enum Status<'a> {
Closed(&'a Error),
InUse {
name: String,
description: String,
},
Active,
}The status of a SharedLink.
Variants
Closed(&'a Error)The link is closed. This is usually because Mumble is not running or
the link was closed manually with deactivate().
InUseThe link is in use by another application.
Fields
name: String | The name of the other application. |
description: String | The description of the other application. |
ActiveThe link is active.