Trait playdate_device::mount::MountAsync

source ·
pub trait MountAsync {
    // Required method
    fn mount(&self) -> impl Future<Output = Result<(), Error>>;
}

Required Methods§

source

fn mount(&self) -> impl Future<Output = Result<(), Error>>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl MountAsync for Device

source§

impl<T> MountAsync for T
where T: Out,