# query.fields.ManyRelation

- **Module:** query.fields
- **Package:** libtmux
- **Language:** Rust
- **Kind:** struct
- **Source:** https://github.com/libtmux/libtmux-rs/blob/8a648c0894dfffc9303583f753b6c8ae01f2fe76/crates/libtmux/src/query/fields.rs#L111
- **Page:** https://libtmux.org/reference/rs/query-fields-manyrelation/

A value-only handle for a to-many relation from `From` to `To`.

Relation expressions inspect only the already-loaded related values on a
candidate and never perform I/O.

## Example

```rust
use libtmux::query::ManyRelation;
use libtmux::query::__private;

struct Parent;
struct Child;
let relation: ManyRelation<Parent, Child> =
    __private::many_relation("parent", "children");
assert!(format!("{relation:?}").contains("children"));
```

## Members

- `id` (attribute)
- `marker` (attribute)
- `any` (method)
- `all` (method)
- `none` (method)
