libtmux Reference MCP Search
On this page

query.fields.TextField

View as Markdown

Module
query.fields
Package
libtmux
Source
crates/libtmux/src/query/fields.rs
struct query.fields.TextField
structoverload [source]
structoverload [source]
struct query.fields.TextField

A typed handle for a portable text field on T.

All operators require strict UTF-8 in the candidate and return false for invalid bytes before any outer logical negation. Rust membership authoring accepts any IntoIterator; the version 1 wire representation uses an array. A scalar string is not substring membership: use TextField::contains for that operation.

Examples

use libtmux::query::TextField;
use libtmux::query::__private;

struct Row;
let field: TextField<Row> = __private::text_field("row", "name");
let _ = field.contains("build");

14 declared, 0 inherited

Members

Esc

Type to search.