Prerelease This site documents an alpha of libtmux. Its structure, URLs and APIs are subject to change.

error.ObjectKind

Rust
  • Python Unavailable
  • TypeScript Unavailable
  • Rust
  • Go Unavailable
  • Java Unavailable
  • .NET Unavailable
  • C++ Unavailable
  • Swift Unavailable

View as Markdown

Module
error
Package
libtmux
Source
crates/libtmux/src/error.rs
enum error.ObjectKind
enumoverload [source]
enumoverload [source]
enum error.ObjectKind

The kind of tmux object a failure refers to.

Examples

use libtmux::ObjectKind;
// Carried by `Error::ObjectGone` so a caller can say what disappeared
// without parsing the message.
assert_eq!(ObjectKind::Pane.to_string(), "pane");

4 declared, 0 inherited

Members

  • Client constant A client attached to the server.
  • Pane constant A tmux pane.
  • Session constant A tmux session.
  • Window constant A tmux window.
Esc

Type to search.