Prerelease This site documents an alpha of libtmux. Its structure, URLs and APIs are subject to change.

query.fields.TextField.not_in

Rust
  • Python Unavailable
  • TypeScript Unavailable
  • Rust
  • Go Unavailable
  • Java Unavailable
  • .NET Unavailable
  • C++ Unavailable
  • Swift Unavailable

View as Markdown

Module
query.fields
Declared in
TextField
Package
libtmux
Source
crates/libtmux/src/query/fields.rs
not_in ( self , values : I ) → FilterExpr<T>
method [source]
method [source]
not_in

Test exact exclusion from ordered string values.

Rust authoring accepts any IntoIterator; the version 1 wire value is an array, never a scalar string. An empty input matches every valid UTF-8 candidate, but invalid candidate bytes remain a nonmatch.

Examples

use libtmux::query::TextField;
use libtmux::query::__private;
struct Row;
let field: TextField<Row> = __private::text_field("row", "name");
let _ = field.not_in(["done"]);

0 declared, 0 inherited

Esc

Type to search.