Source code

Revision control

Copy as Markdown

Other Tools

use std::ops::Deref;
use crate::object::Object;
///
/// A MIDI device or external device, containing entities.
///
#[derive(Debug, PartialEq)]
pub struct Device {
pub(crate) object: Object,
}
impl Deref for Device {
type Target = Object;
fn deref(&self) -> &Object {
&self.object
}
}