pub trait HaveDataInterface {
    // Required method
    fn data_interface_number(&self) -> Option<u8>;

    // Provided method
    fn have_data_interface(&self) -> bool { ... }
}

Required Methods§

Provided Methods§

Implementations on Foreign Types§

source§

impl HaveDataInterface for Device

Implementors§

source§

impl HaveDataInterface for playdate_device::device::Device

source§

impl HaveDataInterface for DeviceInfo