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

query.fields.BoolField

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

View as Markdown

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

A typed handle for a portable boolean field on T.

Examples

use libtmux::query::BoolField;
use libtmux::query::__private;
struct Row;
let field: BoolField<Row> = __private::bool_field("row", "done");
let _ = field.eq(false);

3 declared, 0 inherited

Members

  • eq method Compare with one boolean value.
  • is_in method Test membership in an ordered set of booleans.
  • not_in method Test exclusion from an ordered set of booleans.
Esc

Type to search.