# View The [`View`] struct is Perspective's query and serialization interface. It represents a query on the `Table`'s dataset and is always created from an existing `Table` instance via the [`Table::view`] method. [`View`]s are immutable with respect to the arguments provided to the [`Table::view`] method; to change these parameters, you must create a new [`View`] on the same [`Table`]. However, each [`View`] is _live_ with respect to the [`Table`]'s data, and will (within a conflation window) update with the latest state as its parent [`Table`] updates, including incrementally recalculating all aggregates, pivots, filters, etc. [`View`] query parameters are composable, in that each parameter works independently _and_ in conjunction with each other, and there is no limit to the number of pivots, filters, etc. which can be applied.
perspective docs for the Rust API.
perspective docs for the Rust API.