On this page
query.fields.TextField
- Module
- query.fields
- Package
- libtmux
- Source
- crates/libtmux/src/query/fields.rs
-
A typed handle for a portable text field on
T.All operators require strict UTF-8 in the candidate and return
falsefor invalid bytes before any outer logical negation. Rust membership authoring accepts anyIntoIterator; the version 1 wire representation uses an array. A scalar string is not substring membership: useTextField::containsfor 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
- id attribute
- marker attribute
- contains method
- contains_ignore_case method
- ends_with method
- ends_with_ignore_case method
- eq method
- eq_ignore_case method
- is_in method
- not_in method
- regex method Compile and match a case-sensitive Rust regular expression.
- regex_ignore_case method Compile and match a Unicode case-insensitive Rust regular expression.
- starts_with method
- starts_with_ignore_case method