[][src]Struct smithay_clipboard::Clipboard

pub struct Clipboard { /* fields omitted */ }

Access to a Wayland clipboard.

Implementations

impl Clipboard[src]

pub fn new(display: *mut c_void) -> Self[src]

Creates new clipboard which will be running on its own thread with its own event queue to handle clipboard requests.

pub fn load(&self) -> Result<String>[src]

Load clipboard data.

Loads content from a clipboard on a last observed seat.

pub fn store<T: Into<String>>(&self, text: T)[src]

Store to a clipboard

Stores to a clipboard on a last observed seat.

pub fn load_primary(&self) -> Result<String>[src]

Load primary clipboard data.

Loads content from a primary clipboard on a last observed seat.

pub fn store_primary<T: Into<String>>(&self, text: T)[src]

Store to a primary clipboard.

Stores to a primary clipboard on a last observed seat.

Trait Implementations

impl Drop for Clipboard[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.