# snapshot.PaneProgressState

- **Module:** snapshot
- **Package:** libtmux
- **Language:** Rust
- **Kind:** enum
- **Source:** https://github.com/libtmux/libtmux-rs/blob/f0e37052c232636b61d095817046e6bfc8f2ca40/crates/libtmux/src/snapshot.rs#L170
- **Page:** https://libtmux.org/en/rs/latest/reference/snapshot-paneprogressstate/

Closed progress-state vocabulary tmux emits for a pane's progress bar.

This is public because [`crate::PaneFields`] exposes a typed handle for the
field, so callers name these variants when filtering.

## Example

```rust
use libtmux::query::Filterable as _;
use libtmux::PaneProgressState;

// Reached as a filter field rather than a getter: tmux only reports it from
// 3.7, so asking for it is a query a caller opts into.
let fields = libtmux::Pane::filter_fields();
let stuck = fields
    .pane_pb_state
    .is_in([PaneProgressState::Error, PaneProgressState::Paused]);
```

## Members

- `Hidden` (constant): Progress display is hidden.
- `Normal` (constant): Progress display is normal.
- `Error` (constant): Progress display reports an error.
- `Indeterminate` (constant): Progress is indeterminate.
- `Paused` (constant): Progress is paused.
