# plan.Effects

- **Module:** plan
- **Package:** libtmux
- **Language:** Rust
- **Kind:** struct
- **Source:** https://github.com/libtmux/libtmux-rs/blob/f0e37052c232636b61d095817046e6bfc8f2ca40/crates/libtmux/src/plan.rs#L80
- **Page:** https://libtmux.org/en/rs/latest/reference/plan-effects/

What an operation does to tmux state.

Carried as data rather than left implicit so a planner, a safety policy,
and a documentation table all read the same answer.

## Members

- `read_only` (attribute): The operation does not change tmux state.
- `destructive` (attribute): The operation removes an object.
- `idempotent` (attribute): Running it twice leaves what running it once leaves.
- `creates` (attribute): The scope of the object it creates, if it creates one.
- `reads_output` (attribute): It captures pane output, so its stdout is the answer.
