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
40
41
use coremidi_sys::MIDIObjectRef;
use std::ops::Deref;

use crate::object::Object;

/// A [MIDI object](https://developer.apple.com/documentation/coremidi/midientityref).
///
/// An entity that a device owns and that contains endpoints.
///
#[derive(Debug, PartialEq)]
pub struct Entity {
    pub(crate) object: Object,
}

impl Entity {
    pub(crate) fn new(object_ref: MIDIObjectRef) -> Self {
        Self {
            object: Object(object_ref),
        }
    }
}

impl Clone for Entity {
    fn clone(&self) -> Self {
        Self::new(self.object.0)
    }
}

impl AsRef<Object> for Entity {
    fn as_ref(&self) -> &Object {
        &self.object
    }
}

impl Deref for Entity {
    type Target = Object;

    fn deref(&self) -> &Object {
        &self.object
    }
}