pub trait HasAndroidClipboard: HasClipboard {
    // Provided methods
    fn set_clipboard_labeled<'life0, 'life1, 'async_trait, CT>(
        &'life0 self,
        label: &'life1 str,
        content_type: ClipboardContentType,
        content: CT
    ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>
       where CT: AsRef<[u8]> + Send + 'async_trait,
             Self: Sync + 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait { ... }
    fn set_clipboard_text_labeled<'life0, 'life1, 'async_trait, CT>(
        &'life0 self,
        label: &'life1 str,
        content: CT
    ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>
       where CT: AsRef<[u8]> + Send + 'async_trait,
             Self: Sync + 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait { ... }
}

Provided Methods§

source

fn set_clipboard_labeled<'life0, 'life1, 'async_trait, CT>( &'life0 self, label: &'life1 str, content_type: ClipboardContentType, content: CT ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>where CT: AsRef<[u8]> + Send + 'async_trait, Self: Sync + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn set_clipboard_text_labeled<'life0, 'life1, 'async_trait, CT>( &'life0 self, label: &'life1 str, content: CT ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>where CT: AsRef<[u8]> + Send + 'async_trait, Self: Sync + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Object Safety§

This trait is not object safe.

Implementors§