1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT
use crate::ffi;
use glib::prelude::*;
glib::wrapper! {
/// An interface for protocol of command DSP model in MOTU FireWire series.
///
/// The command DSP models in Mark of the Unicorn (MOTU) FireWire series transfer isochronous
/// packets to deliver PCM frames and MIDI messages as well as metering information. The
/// [`MotuCommandDsp`][crate::MotuCommandDsp] is an object interface for the metering information in the command DSP
/// protocol.
///
/// # Implements
///
/// [`MotuCommandDspExt`][trait@crate::prelude::MotuCommandDspExt], [`MotuCommandDspManual`][trait@crate::prelude::MotuCommandDspManual]
#[doc(alias = "HitakiMotuCommandDsp")]
pub struct MotuCommandDsp(Interface<ffi::HitakiMotuCommandDsp, ffi::HitakiMotuCommandDspInterface>);
match fn {
type_ => || ffi::hitaki_motu_command_dsp_get_type(),
}
}
impl MotuCommandDsp {
pub const NONE: Option<&'static MotuCommandDsp> = None;
}
/// Trait containing the part of [`struct@MotuCommandDsp`] methods.
///
/// # Implementors
///
/// [`MotuCommandDsp`][struct@crate::MotuCommandDsp], [`SndMotu`][struct@crate::SndMotu]
pub trait MotuCommandDspExt: IsA<MotuCommandDsp> + 'static {}
impl<O: IsA<MotuCommandDsp>> MotuCommandDspExt for O {}