Module rytm_rs::query

source ·
Expand description

Query structures for the rytm.

The structures in this module are used to send sysex queries to the rytm.

The all implement the ObjectQuery trait and there is a blanket implementation for all types which implement ObjectQuery to be SysexCompatible.

Example

use rytm::prelude::*;

let query = GlobalQuery::new_targeting_work_buffer();
let sysex = query.as_sysex().unwrap();

Structs

Traits

  • A trait which is implemented by all structures which can be converted to rytm sysex query messages.